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 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 &