jwulff-yelp 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 John Wulff
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,7 @@
1
+ = yelp
2
+
3
+ Description goes here.
4
+
5
+ == Copyright
6
+
7
+ Copyright (c) 2009 John Wulff. See LICENSE for details.
data/lib/yelp.rb ADDED
@@ -0,0 +1,14 @@
1
+ require 'rubygems'
2
+ require 'open-uri'
3
+ require 'json'
4
+
5
+ [ 'entity',
6
+ 'business',
7
+ 'error',
8
+ 'neighborhood',
9
+ 'query',
10
+ 'yelp',
11
+ 'category',
12
+ 'review' ].each do |name|
13
+ require File.join(File.dirname(__FILE__), 'yelp', name)
14
+ end
@@ -0,0 +1,54 @@
1
+ class Yelp
2
+ class Business < Entity
3
+ attr_reader :address1,
4
+ :address2,
5
+ :address3,
6
+ :avg_rating,
7
+ :categories,
8
+ :city,
9
+ :country,
10
+ :country_code,
11
+ :distance,
12
+ :id,
13
+ :is_closed,
14
+ :latitude,
15
+ :longitude,
16
+ :mobile_url,
17
+ :name,
18
+ :nearby_url,
19
+ :neighborhoods,
20
+ :phone,
21
+ :photo_url,
22
+ :photo_url_small,
23
+ :rating_img_url,
24
+ :rating_img_url_small,
25
+ :review_count,
26
+ :reviews,
27
+ :state,
28
+ :state_code,
29
+ :url,
30
+ :zip
31
+
32
+ class << self
33
+ def find_within(x_1, y_1, x_2, y_2, options = {})
34
+ url = "http://api.yelp.com/business_review_search?ywsid=#{Yelp.ywsid}"
35
+ url << "&tl_lat=#{y_1}"
36
+ url << "&tl_long=#{x_1}"
37
+ url << "&br_lat=#{y_2}"
38
+ url << "&br_long=#{x_2}"
39
+ url << "&num_biz_requested=20" unless options[:num_biz_requested]
40
+ options.each_pair do |key, value|
41
+ url << "&#{key}=#{value}"
42
+ end
43
+
44
+ Query.new(url)['businesses'].collect do |hash|
45
+ # Construct Categories
46
+ hash['categories'].collect! { |x| Category.new x }
47
+ hash['reviews'].collect! { |x| Review.new x }
48
+ hash['neighborhoods'].collect!{ |x| Neighborhood.new x }
49
+ Business.new hash
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,7 @@
1
+ class Yelp
2
+ class Category < Entity
3
+ attr_reader :category_filter,
4
+ :name,
5
+ :search_url
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ class Yelp
2
+ class Entity
3
+ def initialize(attributes = {})
4
+ attributes.each_pair do |key, value|
5
+ value.freeze
6
+ instance_variable_set "@#{key}", value
7
+ end
8
+ end
9
+ end
10
+ end
data/lib/yelp/error.rb ADDED
@@ -0,0 +1,15 @@
1
+ class Yelp
2
+ class Error
3
+ class ServerError < RuntimeError; def to_s; 'A system error occurred and the request was unable to be processed.' end end
4
+ class InvalidYWSID < RuntimeError; def to_s; 'An invalid YWSID was supplied with the API request' end end
5
+ class MissingYWSID < RuntimeError; def to_s; 'The required YWSID parameter was not supplied with the request.' end end
6
+ class ExceededDailyAPIRequestLimit < RuntimeError; def to_s; 'The number of requests executed for your YWSID on a particular day has exceeded the specified limit.' end end
7
+ class APINotAvailable < RuntimeError; def to_s; 'The Yelp API is currently not available.' end end
8
+ class InvalidRequest < RuntimeError; def to_s; 'An invalid API request was sent.' end end
9
+ class UnspecifiedLocation < RuntimeError; def to_s; 'Enough information was not provided in the request to allow Yelp to determine a specific search location.' end end
10
+ class BadTerm < RuntimeError; def to_s; 'The term parameter provided in the request could not be understood.' end end
11
+ class BadLocation < RuntimeError; def to_s; 'The location parameter provided in the request could not be understood.' end end
12
+ class AreaTooLarge < RuntimeError; def to_s; 'The geographical area is too large for this search request. Max search area is 2,500 sq miles.' end end
13
+ class UnknownCategory < RuntimeError; def to_s; 'An unknown category was specified.' end end
14
+ end
15
+ end
@@ -0,0 +1,6 @@
1
+ class Yelp
2
+ class Neighborhood < Entity
3
+ attr_reader :name,
4
+ :url
5
+ end
6
+ end
data/lib/yelp/query.rb ADDED
@@ -0,0 +1,33 @@
1
+ class Yelp
2
+ class Query < Hash
3
+ def initialize(url)
4
+ merge! JSON.parse(open(url).read)
5
+ case self['message']['code']
6
+ when 0
7
+ return true
8
+ when 1
9
+ raise Error::ServerError.new
10
+ when 2
11
+ raise Error::InvalidYWSID.new
12
+ when 3
13
+ raise Error::MissingYWSID.new
14
+ when 4
15
+ raise Error::ExceededDailyAPIRequestLimit.new
16
+ when 5
17
+ raise Error::APINotAvailable.new
18
+ when 6
19
+ raise Error::InvalidRequest.new
20
+ when 200
21
+ raise Error::UnspecifiedLocation.new
22
+ when 201
23
+ raise Error::BadTerm.new
24
+ when 202
25
+ raise Error::BadLocation.new
26
+ when 203
27
+ raise Error::AreaTooLarge
28
+ when 205
29
+ raise Error::UnknownCategory.new
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,16 @@
1
+ class Yelp
2
+ class Review < Entity
3
+ attr_reader :date,
4
+ :id,
5
+ :mobile_uri,
6
+ :rating,
7
+ :rating_img_url,
8
+ :rating_img_url_small,
9
+ :text_excerpt,
10
+ :url,
11
+ :user_name,
12
+ :user_photo_url,
13
+ :user_photo_url_small,
14
+ :user_url
15
+ end
16
+ end
data/lib/yelp/yelp.rb ADDED
@@ -0,0 +1,11 @@
1
+ class Yelp
2
+ class << self
3
+ def ywsid
4
+ @ywsid
5
+ end
6
+
7
+ def ywsid=(value)
8
+ @ywsid = value
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,13 @@
1
+ ---
2
+ http://api.yelp.com/TEST_MESSAGE_CODE_1: "{\"message\": {\"code\": 1}}"
3
+ http://api.yelp.com/TEST_MESSAGE_CODE_2: "{\"message\": {\"code\": 2}}"
4
+ http://api.yelp.com/TEST_MESSAGE_CODE_3: "{\"message\": {\"code\": 3}}"
5
+ http://api.yelp.com/TEST_MESSAGE_CODE_4: "{\"message\": {\"code\": 4}}"
6
+ http://api.yelp.com/TEST_MESSAGE_CODE_5: "{\"message\": {\"code\": 5}}"
7
+ http://api.yelp.com/TEST_MESSAGE_CODE_6: "{\"message\": {\"code\": 6}}"
8
+ http://api.yelp.com/TEST_MESSAGE_CODE_200: "{\"message\": {\"code\": 200}}"
9
+ http://api.yelp.com/TEST_MESSAGE_CODE_201: "{\"message\": {\"code\": 201}}"
10
+ http://api.yelp.com/TEST_MESSAGE_CODE_202: "{\"message\": {\"code\": 202}}"
11
+ http://api.yelp.com/TEST_MESSAGE_CODE_203: "{\"message\": {\"code\": 203}}"
12
+ http://api.yelp.com/TEST_MESSAGE_CODE_205: "{\"message\": {\"code\": 205}}"
13
+ http://api.yelp.com/business_review_search?ywsid=TEST_YWSID&tl_lat=47.65&tl_long=-122.31&br_lat=47.66&br_long=-122.32&num_biz_requested=20: "{\"message\": {\"text\": \"OK\", \"code\": 0, \"version\": 1.1000000000000001}, \"businesses\": [{\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"oyJjYfS9P5EI_bRL10L1fA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/oyJjYfS9P5EI_bRL10L1fA\", \"review_count\": 41, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.658500671386697, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"4208 University Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066326397\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"mags\", \"search_url\": \"http://www.yelp.com/search?find_loc=4208+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=mags\", \"name\": \"Newspapers & Magazines\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/34gvDEa0BaMFquMlpg-IIg/ms\", \"distance\": 0.25928565859794617, \"name\": \"Bulldog News\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/bulldog-news-seattle-3\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.31300354003901, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/34gvDEa0BaMFquMlpg-IIg/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/oyJjYfS9P5EI_bRL10L1fA?srid=O1goDnE8VBYisiKjc8Uy6Q\", \"url\": \"http://www.yelp.com/biz/bulldog-news-seattle-3#hrid:O1goDnE8VBYisiKjc8Uy6Q\", \"user_url\": \"http://www.yelp.com/user_details?userid=MAUpZlhxR7fpBNW2uL87hQ\", \"text_excerpt\": \"I generally like this place and the magazine collection is quite good but sometimes the staff can be indifferent.\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-02-20\", \"user_name\": \"Greg H.\", \"id\": \"O1goDnE8VBYisiKjc8Uy6Q\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/gLZFHcM5YbCMo1vELc857g/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/oyJjYfS9P5EI_bRL10L1fA?srid=0NvBDdV-Zko1ExUuo-mvMw\", \"url\": \"http://www.yelp.com/biz/bulldog-news-seattle-3#hrid:0NvBDdV-Zko1ExUuo-mvMw\", \"user_url\": \"http://www.yelp.com/user_details?userid=1EFCV8RYA71Ir8xssyaiWQ\", \"text_excerpt\": \"Bulldog news carries the who's who of periodicals from not only the US, but around the world. It's also a great place to grab a cup of coffee. I was...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/gLZFHcM5YbCMo1vELc857g/ms\", \"date\": \"2009-01-03\", \"user_name\": \"Molly K.\", \"id\": \"0NvBDdV-Zko1ExUuo-mvMw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/ZeeRkxAym0UuFhUHNT_-1Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/oyJjYfS9P5EI_bRL10L1fA?srid=zf3_DH-PEssRNUdJTTLZ2A\", \"url\": \"http://www.yelp.com/biz/bulldog-news-seattle-3#hrid:zf3_DH-PEssRNUdJTTLZ2A\", \"user_url\": \"http://www.yelp.com/user_details?userid=AM0PRGrzopQR4R5FQiQHCA\", \"text_excerpt\": \"this is an excellent place to get NEWS from around the world. It is such a varied and packed collection. I may never need certain newspapers, but I am so...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/ZeeRkxAym0UuFhUHNT_-1Q/ms\", \"date\": \"2008-12-15\", \"user_name\": \"cathy g.\", \"id\": \"zf3_DH-PEssRNUdJTTLZ2A\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4208+University+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"ux86ORavDbldn6cIULzPAQ\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/ux86ORavDbldn6cIULzPAQ\", \"review_count\": 20, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.658199310302699, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"1408 NE 42nd St\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066331800\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"bookstores\", \"search_url\": \"http://www.yelp.com/search?find_loc=1408+NE+42nd+St%2C+Seattle%2C+WA+98105&cflt=bookstores\", \"name\": \"Bookstores\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/vTtaBP9Fycl7q1yNL6RTDw/ms\", \"distance\": 0.26162678003311157, \"name\": \"Magus Bookstore\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/magus-bookstore-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.31199645996099, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/vTtaBP9Fycl7q1yNL6RTDw/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_2.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/EhKsRxiIcXzyTQGcmNhFJw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_2.png\", \"rating\": 2, \"mobile_uri\": \"http://mobile.yelp.com/biz/ux86ORavDbldn6cIULzPAQ?srid=zCZVq60hDmY-LiS5uoqxlA\", \"url\": \"http://www.yelp.com/biz/magus-bookstore-seattle#hrid:zCZVq60hDmY-LiS5uoqxlA\", \"user_url\": \"http://www.yelp.com/user_details?userid=xpH89ijdAibgZok0ulsaqA\", \"text_excerpt\": \"I came here to get a fairly ubiquitous Hofstadter book and it seemed a bit overpriced for a used paperback with weakened bindings.\\n\\nI went the extra block...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/EhKsRxiIcXzyTQGcmNhFJw/ms\", \"date\": \"2009-02-25\", \"user_name\": \"Alan F.\", \"id\": \"zCZVq60hDmY-LiS5uoqxlA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/z9yE1fWsDQSgXxfaCggYkA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/ux86ORavDbldn6cIULzPAQ?srid=okRZ-n7w1_5FZtd5v7zVWA\", \"url\": \"http://www.yelp.com/biz/magus-bookstore-seattle#hrid:okRZ-n7w1_5FZtd5v7zVWA\", \"user_url\": \"http://www.yelp.com/user_details?userid=t6_rHdcUyHTu6GK2elz-gQ\", \"text_excerpt\": \"I make a pilgrimage here every time I come to Seattle. Great selection, good prices, well organized, and friendly. Aisles could be a little wider for...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/z9yE1fWsDQSgXxfaCggYkA/ms\", \"date\": \"2009-02-08\", \"user_name\": \"Kerry G.\", \"id\": \"okRZ-n7w1_5FZtd5v7zVWA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/1_Et2O9l1_6APQzUR9BD5Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/ux86ORavDbldn6cIULzPAQ?srid=D3fwF1KnAb7jx20bvsM2dQ\", \"url\": \"http://www.yelp.com/biz/magus-bookstore-seattle#hrid:D3fwF1KnAb7jx20bvsM2dQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=nYIa_vXjBwrtkFAPVbkPGw\", \"text_excerpt\": \"I moved away from the u-district almost two years ago and i still make pilgrimages to Magus.\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/1_Et2O9l1_6APQzUR9BD5Q/ms\", \"date\": \"2008-10-30\", \"user_name\": \"Jacob Z.\", \"id\": \"D3fwF1KnAb7jx20bvsM2dQ\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=1408+NE+42nd+St%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"YGWR9uRCrFgIK_TNA6c1GQ\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/YGWR9uRCrFgIK_TNA6c1GQ\", \"review_count\": 24, \"zip\": \"98195\", \"state\": \"WA\", \"latitude\": 47.6567993164062, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"15th Ave NE & NE 41st St.\", \"address2\": \"University of Washington\", \"address3\": \"\", \"phone\": \"2065432280\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"museums\", \"search_url\": \"http://www.yelp.com/search?find_loc=15th+Ave+NE+%26+NE+41st+St.%2C+Seattle%2C+WA+98195&cflt=museums\", \"name\": \"Museums\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/-78IXLqxqBFXTOx1Ky8FcA/ms\", \"distance\": 0.18715651333332062, \"name\": \"Henry Art Gallery, Faye G. Allen Center for the Visual Arts\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/henry-art-gallery-faye-g-allen-center-for-the-visual-arts-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.31199645996099, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/-78IXLqxqBFXTOx1Ky8FcA/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/vsLVILeR1lt6fX2qCMEdbA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/YGWR9uRCrFgIK_TNA6c1GQ?srid=80TLOtzmtqTtsM_uWYQgJg\", \"url\": \"http://www.yelp.com/biz/henry-art-gallery-faye-g-allen-center-for-the-visual-arts-seattle#hrid:80TLOtzmtqTtsM_uWYQgJg\", \"user_url\": \"http://www.yelp.com/user_details?userid=KzMgL2E49onbwB3g4prnVA\", \"text_excerpt\": \"I started my visit with the James Turrell Skypace. That kind of tripped me out a little and I think it effected the rest of my experience. I was in there...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/vsLVILeR1lt6fX2qCMEdbA/ms\", \"date\": \"2008-12-16\", \"user_name\": \"Inna B.\", \"id\": \"80TLOtzmtqTtsM_uWYQgJg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_2.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/kDEVGIPNGS9Yls099b04mg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_2.png\", \"rating\": 2, \"mobile_uri\": \"http://mobile.yelp.com/biz/YGWR9uRCrFgIK_TNA6c1GQ?srid=-xB3tQRp8IZt1jtdwlrxJQ\", \"url\": \"http://www.yelp.com/biz/henry-art-gallery-faye-g-allen-center-for-the-visual-arts-seattle#hrid:-xB3tQRp8IZt1jtdwlrxJQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=daYwff3kBqb5cD8aBZPrLA\", \"text_excerpt\": \"I don't have a problem paying $10 to get in the door: love art. I majored in art. Support the arts!\\n\\nHere's what I do have a problem with:\\n\\nWalking in,...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/kDEVGIPNGS9Yls099b04mg/ms\", \"date\": \"2008-11-30\", \"user_name\": \"Katie S.\", \"id\": \"-xB3tQRp8IZt1jtdwlrxJQ\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/YJ3U7egzlHT-b6Ti_9MdYg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/YGWR9uRCrFgIK_TNA6c1GQ?srid=XZqeUtXcyKyPsyzmuAvDOw\", \"url\": \"http://www.yelp.com/biz/henry-art-gallery-faye-g-allen-center-for-the-visual-arts-seattle#hrid:XZqeUtXcyKyPsyzmuAvDOw\", \"user_url\": \"http://www.yelp.com/user_details?userid=w3x6alGCXmCqc8xfD2Z53A\", \"text_excerpt\": \"I have so many great things to say about this place... where do I start? Awesome art... the art exhibitions are both captivating and fascinating. The...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/YJ3U7egzlHT-b6Ti_9MdYg/ms\", \"date\": \"2008-11-22\", \"user_name\": \"Jia T.\", \"id\": \"XZqeUtXcyKyPsyzmuAvDOw\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=15th+Ave+NE+%26+NE+41st+St.%2C+Seattle%2C+WA+98195\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"Q3sAiiC3MDjrH1TrCgH7Og\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/Q3sAiiC3MDjrH1TrCgH7Og\", \"review_count\": 26, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.658546000000001, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"4214 Roosevelt Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066321203\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"hardware\", \"search_url\": \"http://www.yelp.com/search?find_loc=4214+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105&cflt=hardware\", \"name\": \"Hardware Stores\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/DdElw_N8XeatB2F18xMetQ/ms\", \"distance\": 0.27676823735237122, \"name\": \"Hardwick's\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/hardwicks-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.317768, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/DdElw_N8XeatB2F18xMetQ/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_1.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_1.png\", \"rating\": 1, \"mobile_uri\": \"http://mobile.yelp.com/biz/Q3sAiiC3MDjrH1TrCgH7Og?srid=jZRU0NiM9EDsHZllO-TJXg\", \"url\": \"http://www.yelp.com/biz/hardwicks-seattle#hrid:jZRU0NiM9EDsHZllO-TJXg\", \"user_url\": \"http://www.yelp.com/user_details?userid=p0m7QccyxDbuAS6T6szIPQ\", \"text_excerpt\": \"What a surly obnoxious uncouth moron on the cashdesk - or could there have been a racist reason for his unprovoked atrocious behaviour?\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-03-05\", \"user_name\": \"J P.\", \"id\": \"jZRU0NiM9EDsHZllO-TJXg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/CTaGrVRsXyZg30MBOazm1Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/Q3sAiiC3MDjrH1TrCgH7Og?srid=8je8IC27nrnTCqbKTbqf7w\", \"url\": \"http://www.yelp.com/biz/hardwicks-seattle#hrid:8je8IC27nrnTCqbKTbqf7w\", \"user_url\": \"http://www.yelp.com/user_details?userid=Ygx0w_tGd8ba_wnSMFguxw\", \"text_excerpt\": \"This place is amazing! They have everything...and great prices. It feels good to support a local buisness like this. It's heaven just to browse this...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/CTaGrVRsXyZg30MBOazm1Q/ms\", \"date\": \"2009-03-04\", \"user_name\": \"Barry W.\", \"id\": \"8je8IC27nrnTCqbKTbqf7w\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/Q3sAiiC3MDjrH1TrCgH7Og?srid=aG7Grww87-SZ2736-ILPkQ\", \"url\": \"http://www.yelp.com/biz/hardwicks-seattle#hrid:aG7Grww87-SZ2736-ILPkQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=VWo1lnKlQNwzu9AIqg4fIw\", \"text_excerpt\": \"Great store but....bundle up. It's colder in there than it is outside !\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-02-18\", \"user_name\": \"mike f.\", \"id\": \"aG7Grww87-SZ2736-ILPkQ\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4214+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"v1jCkvN0tUY-nIuH66HsyA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/v1jCkvN0tUY-nIuH66HsyA\", \"review_count\": 42, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.6570014953613, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"4106 Brooklyn Ave NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066323037\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"sandwiches\", \"search_url\": \"http://www.yelp.com/search?find_loc=4106+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105&cflt=sandwiches\", \"name\": \"Sandwiches\"}, {\"category_filter\": \"vegan\", \"search_url\": \"http://www.yelp.com/search?find_loc=4106+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105&cflt=vegan\", \"name\": \"Vegan\"}, {\"category_filter\": \"vegetarian\", \"search_url\": \"http://www.yelp.com/search?find_loc=4106+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105&cflt=vegetarian\", \"name\": \"Vegetarian\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/BAHrzNxd_t6QD9ZLVOQlAw/ms\", \"distance\": 0.14608113467693329, \"name\": \"Hillside Quickie's Cafe\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/hillside-quickies-cafe-seattle-2\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.314002990723, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/BAHrzNxd_t6QD9ZLVOQlAw/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/GOc-KtdwTP63UZ9US-EV9g/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/v1jCkvN0tUY-nIuH66HsyA?srid=-gcS8S7aiHTwYROMC5QP5A\", \"url\": \"http://www.yelp.com/biz/hillside-quickies-cafe-seattle-2#hrid:-gcS8S7aiHTwYROMC5QP5A\", \"user_url\": \"http://www.yelp.com/user_details?userid=fKWhNShAzd6nxbgADSqz8A\", \"text_excerpt\": \"nom nom nom\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/GOc-KtdwTP63UZ9US-EV9g/ms\", \"date\": \"2009-03-03\", \"user_name\": \"Kapua P.\", \"id\": \"-gcS8S7aiHTwYROMC5QP5A\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/TYC8KDZxLiT7Bk1lSLjGoQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/v1jCkvN0tUY-nIuH66HsyA?srid=P6KpdKg2G377yjULraa4dA\", \"url\": \"http://www.yelp.com/biz/hillside-quickies-cafe-seattle-2#hrid:P6KpdKg2G377yjULraa4dA\", \"user_url\": \"http://www.yelp.com/user_details?userid=fDbH6fvmxg-KfN1VLmWB5g\", \"text_excerpt\": \"I heart the Jamaican Spice Sub sandwich. It's the practically the only thing I have ordered because I love it so much. Once I was in a hurry and ventured a...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/TYC8KDZxLiT7Bk1lSLjGoQ/ms\", \"date\": \"2009-01-31\", \"user_name\": \"Amy P.\", \"id\": \"P6KpdKg2G377yjULraa4dA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_1.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/mPKd_Xlw9W_1lo0qbmKobA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_1.png\", \"rating\": 1, \"mobile_uri\": \"http://mobile.yelp.com/biz/v1jCkvN0tUY-nIuH66HsyA?srid=bcg5ZEP9Ix9xyyQQuWwH5g\", \"url\": \"http://www.yelp.com/biz/hillside-quickies-cafe-seattle-2#hrid:bcg5ZEP9Ix9xyyQQuWwH5g\", \"user_url\": \"http://www.yelp.com/user_details?userid=Rh8KLikEwRGWgBhHhMZJUA\", \"text_excerpt\": \"I love sandwiches, so when I drove by this 15th Ave. cafe I just had to stop. Well, it was closed. Then about a week later, I happened to be in the...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/mPKd_Xlw9W_1lo0qbmKobA/ms\", \"date\": \"2009-01-29\", \"user_name\": \"rhea k.\", \"id\": \"bcg5ZEP9Ix9xyyQQuWwH5g\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4106+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"FhMXLB9RGE3BgO3F3VKZcw\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/FhMXLB9RGE3BgO3F3VKZcw\", \"review_count\": 22, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.659816999999997, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"1316 NE 43rd St\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066331778\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"greek\", \"search_url\": \"http://www.yelp.com/search?find_loc=1316+NE+43rd+St%2C+Seattle%2C+WA+98105&cflt=greek\", \"name\": \"Greek\"}, {\"category_filter\": \"mediterranean\", \"search_url\": \"http://www.yelp.com/search?find_loc=1316+NE+43rd+St%2C+Seattle%2C+WA+98105&cflt=mediterranean\", \"name\": \"Mediterranean\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/jTerJ_RplLGfUBKEiKGamQ/ms\", \"distance\": 0.33582636713981628, \"name\": \"Samir's Mediterranean Grill\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/samirs-mediterranean-grill-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.314053, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/jTerJ_RplLGfUBKEiKGamQ/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/Xb7uCePk-sHJYvf3f9AlKA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/FhMXLB9RGE3BgO3F3VKZcw?srid=PXKqFw20yexYAFheAaNcNg\", \"url\": \"http://www.yelp.com/biz/samirs-mediterranean-grill-seattle#hrid:PXKqFw20yexYAFheAaNcNg\", \"user_url\": \"http://www.yelp.com/user_details?userid=_dU_V0nIELrFu4GkUkhn0Q\", \"text_excerpt\": \"4 stars for the food-\\nHummus, kafta, falafel sharwarma, veggie combo plates are all delicious! Also, if you like spicy , order spicy, you will not be...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/Xb7uCePk-sHJYvf3f9AlKA/ms\", \"date\": \"2009-01-20\", \"user_name\": \"Talisha L.\", \"id\": \"PXKqFw20yexYAFheAaNcNg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/RssGHIqN0E1t1zyPmvo5gg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/FhMXLB9RGE3BgO3F3VKZcw?srid=kEKAMEPeO1mqQtAiOqJAcg\", \"url\": \"http://www.yelp.com/biz/samirs-mediterranean-grill-seattle#hrid:kEKAMEPeO1mqQtAiOqJAcg\", \"user_url\": \"http://www.yelp.com/user_details?userid=E6N12npQuGic2rbO-8kd_Q\", \"text_excerpt\": \"Great family atmosphere, yummy falafel, terrific service, and reasonable prices.\\nWe'll be back to try the fava bean appetizer soon!\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/RssGHIqN0E1t1zyPmvo5gg/ms\", \"date\": \"2009-01-06\", \"user_name\": \"Danielle D.\", \"id\": \"kEKAMEPeO1mqQtAiOqJAcg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/mL7zhpxlbdFpi5QgEEi3oA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/FhMXLB9RGE3BgO3F3VKZcw?srid=wRsCUI2OREE5_O_sg5zaog\", \"url\": \"http://www.yelp.com/biz/samirs-mediterranean-grill-seattle#hrid:wRsCUI2OREE5_O_sg5zaog\", \"user_url\": \"http://www.yelp.com/user_details?userid=99MpqrGNjmP028ng_C-8HQ\", \"text_excerpt\": \"I had a gyro, side salad and can of soda for $7+$1 tip=$8.\\n\\nEh, it was OK. The side salad was totally forgettable. The gyro was OK but there was not a lot...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/mL7zhpxlbdFpi5QgEEi3oA/ms\", \"date\": \"2008-09-05\", \"user_name\": \"Angie K.\", \"id\": \"wRsCUI2OREE5_O_sg5zaog\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=1316+NE+43rd+St%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"DtAGQu3EljPJbyASaJ2SpA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/DtAGQu3EljPJbyASaJ2SpA\", \"review_count\": 15, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.655200958252003, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"1410 NE 40th St\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065475649\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"coffee\", \"search_url\": \"http://www.yelp.com/search?find_loc=1410+NE+40th+St%2C+Seattle%2C+WA+98105&cflt=coffee\", \"name\": \"Coffee & Tea\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/fy84i09dNTY_WKrICc_BhA/ms\", \"distance\": 0.093862257897853851, \"name\": \"Bean & Bagel\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/bean-and-bagel-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.31300354003901, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/fy84i09dNTY_WKrICc_BhA/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/vfttEPTQDNIgeF-qO9qX1Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/DtAGQu3EljPJbyASaJ2SpA?srid=9xOYCvhGh-e4kEXLjyZkRg\", \"url\": \"http://www.yelp.com/biz/bean-and-bagel-seattle#hrid:9xOYCvhGh-e4kEXLjyZkRg\", \"user_url\": \"http://www.yelp.com/user_details?userid=iYJfFEFjZrDxrBT_MqhO3Q\", \"text_excerpt\": \"In a city as pathetically lazy as Seattle, it's nice to have just one place open at 7 for the early birds. Their bagels are hearty and fill you up just...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/vfttEPTQDNIgeF-qO9qX1Q/ms\", \"date\": \"2009-01-25\", \"user_name\": \"Devin E.\", \"id\": \"9xOYCvhGh-e4kEXLjyZkRg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/ZB10c4PHWWLJ0w7WKgwsNw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/DtAGQu3EljPJbyASaJ2SpA?srid=pS-ORpAM7UxgOUHu8-1XMw\", \"url\": \"http://www.yelp.com/biz/bean-and-bagel-seattle#hrid:pS-ORpAM7UxgOUHu8-1XMw\", \"user_url\": \"http://www.yelp.com/user_details?userid=sfES003cv9gnqfcmQ-VeFw\", \"text_excerpt\": \"Aww you're so cute. \\n\\nThey're always really nice and chatting up regular customers in line ahead of me. I dig the walk up window, the tiny tables in back,...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/ZB10c4PHWWLJ0w7WKgwsNw/ms\", \"date\": \"2009-01-21\", \"user_name\": \"Ashley B.\", \"id\": \"pS-ORpAM7UxgOUHu8-1XMw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/fCqugSSuuman5NkwCL0Qaw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/DtAGQu3EljPJbyASaJ2SpA?srid=nKI-6OHq7erj2Jgu-56l_A\", \"url\": \"http://www.yelp.com/biz/bean-and-bagel-seattle#hrid:nKI-6OHq7erj2Jgu-56l_A\", \"user_url\": \"http://www.yelp.com/user_details?userid=xovyzXVPlV2N75MGLMHEfw\", \"text_excerpt\": \"I'll preface this by saying I am PICKY about my bagels. I hate the ones sold on campus (too dense, too chewy), I hate the bagged ones sold in grocery stores...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/fCqugSSuuman5NkwCL0Qaw/ms\", \"date\": \"2008-12-02\", \"user_name\": \"Nurina J.\", \"id\": \"nKI-6OHq7erj2Jgu-56l_A\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=1410+NE+40th+St%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"-8M4aC_nuUrabfFpjAjWKw\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/-8M4aC_nuUrabfFpjAjWKw\", \"review_count\": 13, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.656204223632798, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"2623 NE University Vlg\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065225986\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"cosmetics\", \"search_url\": \"http://www.yelp.com/search?find_loc=2623+NE+University+Vlg%2C+Seattle%2C+WA+98105&cflt=cosmetics\", \"name\": \"Cosmetics & Beauty Supply\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/gA_ZOBLsWBlPI5lf0hrHtg/ms\", \"distance\": 0.11645100265741348, \"name\": \"MAC Cosmetics\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/mac-cosmetics-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.31324768066401, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/gA_ZOBLsWBlPI5lf0hrHtg/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/Mv8Do8LbbXWWGZ65pVydWQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/-8M4aC_nuUrabfFpjAjWKw?srid=xtc88mzAgbkir4cRmn0T3g\", \"url\": \"http://www.yelp.com/biz/mac-cosmetics-seattle#hrid:xtc88mzAgbkir4cRmn0T3g\", \"user_url\": \"http://www.yelp.com/user_details?userid=_SjOxIOHJlQ-lrombsPx5Q\", \"text_excerpt\": \"My virgin journey into the mac cosmetics store. I was on a mission to find the lip gloss oversexed. The lady at the counter could see i was a lost man,...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/Mv8Do8LbbXWWGZ65pVydWQ/ms\", \"date\": \"2009-01-05\", \"user_name\": \"Steve o.\", \"id\": \"xtc88mzAgbkir4cRmn0T3g\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/fxQOZ9XJoJzpUOvs9UsNqw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/-8M4aC_nuUrabfFpjAjWKw?srid=icGNBDjFIqFJha0iTkQEyg\", \"url\": \"http://www.yelp.com/biz/mac-cosmetics-seattle#hrid:icGNBDjFIqFJha0iTkQEyg\", \"user_url\": \"http://www.yelp.com/user_details?userid=Yir9ERr1zZI2Bkajznq6kA\", \"text_excerpt\": \"My first time in a MAC store for cosmetics and I only stumbled in because there wasn't a Body Shop in U-Village, where I usually buy my fave blush, #12. All...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/fxQOZ9XJoJzpUOvs9UsNqw/ms\", \"date\": \"2008-12-28\", \"user_name\": \"Becky L.\", \"id\": \"icGNBDjFIqFJha0iTkQEyg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/QNV0FFKN29npn-UNG95iag/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/-8M4aC_nuUrabfFpjAjWKw?srid=ADMsUzUH0pffjjmeI3Wggw\", \"url\": \"http://www.yelp.com/biz/mac-cosmetics-seattle#hrid:ADMsUzUH0pffjjmeI3Wggw\", \"user_url\": \"http://www.yelp.com/user_details?userid=68rI8SriEjPYvGk81K1Dhw\", \"text_excerpt\": \"I've been a MAC fan for years. I only wear MAC eyeshadow and I always have a tube of lipglass handy. I had never been to this MAC location prior to this...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/QNV0FFKN29npn-UNG95iag/ms\", \"date\": \"2008-10-13\", \"user_name\": \"heidi p.\", \"id\": \"ADMsUzUH0pffjjmeI3Wggw\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=2623+NE+University+Vlg%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"pUgLKLtUd0B0vZFSdYEjkg\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/pUgLKLtUd0B0vZFSdYEjkg\", \"review_count\": 50, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.652599334716797, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"1007 N.E. Boat Street\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065474491\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"bikes\", \"search_url\": \"http://www.yelp.com/search?find_loc=1007+N.E.+Boat+Street%2C+Seattle%2C+WA+98105&cflt=bikes\", \"name\": \"Bikes\"}, {\"category_filter\": \"bikerentals\", \"search_url\": \"http://www.yelp.com/search?find_loc=1007+N.E.+Boat+Street%2C+Seattle%2C+WA+98105&cflt=bikerentals\", \"name\": \"Bike Rentals\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/QaCLWJrB7P_e4GS03KnA-Q/ms\", \"distance\": 0.18988467752933502, \"name\": \"Recycled Cycles\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/recycled-cycles-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.317001342773, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/QaCLWJrB7P_e4GS03KnA-Q/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/pUgLKLtUd0B0vZFSdYEjkg?srid=KHpl6dwrsPWpVFH-u8V5Bw\", \"url\": \"http://www.yelp.com/biz/recycled-cycles-seattle#hrid:KHpl6dwrsPWpVFH-u8V5Bw\", \"user_url\": \"http://www.yelp.com/user_details?userid=Hx142QtnDAbmQbZ-IlMFBA\", \"text_excerpt\": \"This place was so much fun! \\n\\nAfter not being on a bike for 15 years - I really wanted to get started without spending a ton of cash. I knew kinda what I...\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-02-23\", \"user_name\": \"Dee A.\", \"id\": \"KHpl6dwrsPWpVFH-u8V5Bw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/_XHBDojEQecxBixeeFW2fg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/pUgLKLtUd0B0vZFSdYEjkg?srid=NeetT3ipwSyX1YGaLVXl3g\", \"url\": \"http://www.yelp.com/biz/recycled-cycles-seattle#hrid:NeetT3ipwSyX1YGaLVXl3g\", \"user_url\": \"http://www.yelp.com/user_details?userid=gQ--9tYglqyx5TfO-1mw0g\", \"text_excerpt\": \"I love Recycled Cycles. I have built a single speed using their parts and, at times, knowledge of obscure bicycle technology. I have also taken my $2500...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/_XHBDojEQecxBixeeFW2fg/ms\", \"date\": \"2009-02-06\", \"user_name\": \"Josh H.\", \"id\": \"NeetT3ipwSyX1YGaLVXl3g\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/doobbRBMDQqyAV5_2PWDyA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/pUgLKLtUd0B0vZFSdYEjkg?srid=PC3Pw2d5vaTtoirSWrA14Q\", \"url\": \"http://www.yelp.com/biz/recycled-cycles-seattle#hrid:PC3Pw2d5vaTtoirSWrA14Q\", \"user_url\": \"http://www.yelp.com/user_details?userid=15InNakaNds0HzyvlKSOTw\", \"text_excerpt\": \"Best flippin' shop in town, bar none. My opinion, anyway.\\n\\nWhere can a guy buy a new cycling jacket for $40? Here.\\nWhere do the staff just give a discount...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/doobbRBMDQqyAV5_2PWDyA/ms\", \"date\": \"2009-01-16\", \"user_name\": \"Rob B.\", \"id\": \"PC3Pw2d5vaTtoirSWrA14Q\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=1007+N.E.+Boat+Street%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"EOoj2h1Brzk1AhqScvIHDA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/EOoj2h1Brzk1AhqScvIHDA\", \"review_count\": 60, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.658699035644503, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4226 University Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066337867\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"vietnamese\", \"search_url\": \"http://www.yelp.com/search?find_loc=4226+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=vietnamese\", \"name\": \"Vietnamese\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/8y1nDUfXF-e95CkWXzryCA/ms\", \"distance\": 0.27210873365402222, \"name\": \"Thanh VI\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/thanh-vi-seattle-2\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.31300354003901, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/8y1nDUfXF-e95CkWXzryCA/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/iHKTo1O33rAq7cep4C5Fsg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/EOoj2h1Brzk1AhqScvIHDA?srid=JjFcCGCi-1qRFIQYCfuBBA\", \"url\": \"http://www.yelp.com/biz/thanh-vi-seattle-2#hrid:JjFcCGCi-1qRFIQYCfuBBA\", \"user_url\": \"http://www.yelp.com/user_details?userid=a3FAW1zRy_ucAe523u4xyw\", \"text_excerpt\": \"Great banh mi sandwiches and exceptionally friendly service. I love the staff here. This is my #1 choice for Vietnamese on the Ave.\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/iHKTo1O33rAq7cep4C5Fsg/ms\", \"date\": \"2009-03-02\", \"user_name\": \"Dan M.\", \"id\": \"JjFcCGCi-1qRFIQYCfuBBA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/sc-E5fYuMepzbxZ7auSEOQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/EOoj2h1Brzk1AhqScvIHDA?srid=9A10a0UvmMSRihBmFlmVSw\", \"url\": \"http://www.yelp.com/biz/thanh-vi-seattle-2#hrid:9A10a0UvmMSRihBmFlmVSw\", \"user_url\": \"http://www.yelp.com/user_details?userid=-nllfBgg3F8qv4GVNXCrIw\", \"text_excerpt\": \"I'm giving it three stars only because I am not a big fan of pho. If I was, I would probably give it at least four stars. The last couple of times, I've...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/sc-E5fYuMepzbxZ7auSEOQ/ms\", \"date\": \"2009-02-23\", \"user_name\": \"Holly G.\", \"id\": \"9A10a0UvmMSRihBmFlmVSw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/9baQl37XZ2o5uE9CvaCilA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/EOoj2h1Brzk1AhqScvIHDA?srid=WEvCODFAyrgRvEmm2i5ijg\", \"url\": \"http://www.yelp.com/biz/thanh-vi-seattle-2#hrid:WEvCODFAyrgRvEmm2i5ijg\", \"user_url\": \"http://www.yelp.com/user_details?userid=fji4TCB84IjfD2xa17VJFQ\", \"text_excerpt\": \"Iris is the super cheery gal that greets everyone who comes in with a \\\"how you doin Sister?\\\" (or Brother). She totally and completely makes the place-...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/9baQl37XZ2o5uE9CvaCilA/ms\", \"date\": \"2009-02-09\", \"user_name\": \"Meghan P.\", \"id\": \"WEvCODFAyrgRvEmm2i5ijg\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4226+University+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"tLKl4FxyPOebT7-JEjICkA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/tLKl4FxyPOebT7-JEjICkA\", \"review_count\": 10, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.6593017578125, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"4242 Roosevelt Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2068264242\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"hotels\", \"search_url\": \"http://www.yelp.com/search?find_loc=4242+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105&cflt=hotels\", \"name\": \"Hotels\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/ZIx3W3mT92QH26flzC_cQQ/ms\", \"distance\": 0.32857358455657959, \"name\": \"Watertown Hotel\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/watertown-hotel-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.318000793457, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/ZIx3W3mT92QH26flzC_cQQ/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/ve6ohiyO-kvsoBKjEIPcnA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/tLKl4FxyPOebT7-JEjICkA?srid=vL2oU7ShqPim45E6WaWx2g\", \"url\": \"http://www.yelp.com/biz/watertown-hotel-seattle#hrid:vL2oU7ShqPim45E6WaWx2g\", \"user_url\": \"http://www.yelp.com/user_details?userid=nHnNraNUct25HJJTRAGYkA\", \"text_excerpt\": \"The Watertown is a must-stay if you are visiting UW's campus or anywhere else nearby University District. Great location in close proximity to University...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/ve6ohiyO-kvsoBKjEIPcnA/ms\", \"date\": \"2008-11-03\", \"user_name\": \"Susan L.\", \"id\": \"vL2oU7ShqPim45E6WaWx2g\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/2exPuHSa1hAvIAlpCJOU1A/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/tLKl4FxyPOebT7-JEjICkA?srid=M-kzdnz7winP_M-KgWV-Fw\", \"url\": \"http://www.yelp.com/biz/watertown-hotel-seattle#hrid:M-kzdnz7winP_M-KgWV-Fw\", \"user_url\": \"http://www.yelp.com/user_details?userid=5hLQ8_keY8M92MlfAMjFXA\", \"text_excerpt\": \"Amenityville, USA. And I love me some amenities. Lots and lots of towels. In-room refrigerator, coffee, tea, popcorn. Fresh chocolate-chip cookies every...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/2exPuHSa1hAvIAlpCJOU1A/ms\", \"date\": \"2008-09-26\", \"user_name\": \"D H.\", \"id\": \"M-kzdnz7winP_M-KgWV-Fw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/y_GN49Uc-gep3yJDx0PxnQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/tLKl4FxyPOebT7-JEjICkA?srid=0p-eF3l2y1ngy_EzRNfM5Q\", \"url\": \"http://www.yelp.com/biz/watertown-hotel-seattle#hrid:0p-eF3l2y1ngy_EzRNfM5Q\", \"user_url\": \"http://www.yelp.com/user_details?userid=oldDcWT_4JsScDX01U1S_w\", \"text_excerpt\": \"I stayed here for a business trip in December and WOW! what a great hotel. The rooms are nice and spacious with robes and Aveda toiletries. Each room comes...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/y_GN49Uc-gep3yJDx0PxnQ/ms\", \"date\": \"2008-08-01\", \"user_name\": \"Melanie V.\", \"id\": \"0p-eF3l2y1ngy_EzRNfM5Q\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4242+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"XReW-UZJ-kTimtVRzP6HJQ\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/XReW-UZJ-kTimtVRzP6HJQ\", \"review_count\": 43, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.655300140380902, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4006 University Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066342307\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"pubs\", \"search_url\": \"http://www.yelp.com/search?find_loc=4006+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=pubs\", \"name\": \"Pubs\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/1_mX9wwIUyTtRxB4hs3WnQ/ms\", \"distance\": 0.095118202269077301, \"name\": \"College Inn Pub\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/college-inn-pub-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.31300354003901, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/1_mX9wwIUyTtRxB4hs3WnQ/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/EtiKBqSsktSXs38QADH_mA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/XReW-UZJ-kTimtVRzP6HJQ?srid=WxeQLsW0q14yI92YQ9aK7w\", \"url\": \"http://www.yelp.com/biz/college-inn-pub-seattle#hrid:WxeQLsW0q14yI92YQ9aK7w\", \"user_url\": \"http://www.yelp.com/user_details?userid=1RmjgiRw455Cw8TausS__g\", \"text_excerpt\": \"I used to live in the Commodore upstairs from the college inn and it's convenience made it a great place. While the beer selections is substantial, it's not...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/EtiKBqSsktSXs38QADH_mA/ms\", \"date\": \"2009-02-25\", \"user_name\": \"Laura P.\", \"id\": \"WxeQLsW0q14yI92YQ9aK7w\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/XReW-UZJ-kTimtVRzP6HJQ?srid=VVX7Cd7OepUC1fHVmkcJbw\", \"url\": \"http://www.yelp.com/biz/college-inn-pub-seattle#hrid:VVX7Cd7OepUC1fHVmkcJbw\", \"user_url\": \"http://www.yelp.com/user_details?userid=wGz7bRSsWr3O2AdxwwQUyQ\", \"text_excerpt\": \"$1 PBR at a local dive bar.\\n\\nneed i say more?\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-02-23\", \"user_name\": \"Greg K.\", \"id\": \"VVX7Cd7OepUC1fHVmkcJbw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/AOR9nbFK1WEQnqd0gTJNQw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/XReW-UZJ-kTimtVRzP6HJQ?srid=UOJHtAi-JnEq0k_FCRdksw\", \"url\": \"http://www.yelp.com/biz/college-inn-pub-seattle#hrid:UOJHtAi-JnEq0k_FCRdksw\", \"user_url\": \"http://www.yelp.com/user_details?userid=QUwcRxUSNd_n6tT-Qm6yjQ\", \"text_excerpt\": \"If you are looking for a dark pub where you can hide in the corner of a large booth and have a private conversation about life, love, or the merits of the...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/AOR9nbFK1WEQnqd0gTJNQw/ms\", \"date\": \"2009-02-15\", \"user_name\": \"Peter A.\", \"id\": \"UOJHtAi-JnEq0k_FCRdksw\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4006+University+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"NuvWsd7os1l6Pp4Map1xPw\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/NuvWsd7os1l6Pp4Map1xPw\", \"review_count\": 25, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.658901214599602, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4234 University Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065475096\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"burgers\", \"search_url\": \"http://www.yelp.com/search?find_loc=4234+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=burgers\", \"name\": \"Burgers\"}], \"photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_biz_medium.gif\", \"distance\": 0.28523522615432739, \"name\": \"A Burger Place\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/a-burger-place-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.31300354003901, \"photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_biz_small.gif\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/W4Kx0puqbeCero53d6vUoQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/NuvWsd7os1l6Pp4Map1xPw?srid=liPiJov6fSgcZlKyJDUxeA\", \"url\": \"http://www.yelp.com/biz/a-burger-place-seattle#hrid:liPiJov6fSgcZlKyJDUxeA\", \"user_url\": \"http://www.yelp.com/user_details?userid=1FfV66Q-wneIOsf4QXmOog\", \"text_excerpt\": \"Yum. I love \\\"burger burger\\\"! I get a single beef patty + pineapple + sauteed onions/mushrooms + teriyaki sauce + hot sauce + veggies..not something I can...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/W4Kx0puqbeCero53d6vUoQ/ms\", \"date\": \"2009-02-21\", \"user_name\": \"Katarina T.\", \"id\": \"liPiJov6fSgcZlKyJDUxeA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/SIz6YnArD8yMghE3vVI3qg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/NuvWsd7os1l6Pp4Map1xPw?srid=kSsd9ICR_TBK-mRIxlJkeA\", \"url\": \"http://www.yelp.com/biz/a-burger-place-seattle#hrid:kSsd9ICR_TBK-mRIxlJkeA\", \"user_url\": \"http://www.yelp.com/user_details?userid=nnoRzGBEXPHnsHyiFlq2JA\", \"text_excerpt\": \"Walk in- pick up a check list- check what you want (meats, non-meats, cheeses?, free toppings, charge for toppings, condiments)- hand the order in to the...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/SIz6YnArD8yMghE3vVI3qg/ms\", \"date\": \"2009-01-10\", \"user_name\": \"Natalie W.\", \"id\": \"kSsd9ICR_TBK-mRIxlJkeA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/NuvWsd7os1l6Pp4Map1xPw?srid=DQo_WzHxVGuBYWgyyRQBpw\", \"url\": \"http://www.yelp.com/biz/a-burger-place-seattle#hrid:DQo_WzHxVGuBYWgyyRQBpw\", \"user_url\": \"http://www.yelp.com/user_details?userid=IUFDqQoWqeJSsTnFs1tHTw\", \"text_excerpt\": \"I have only been here twice and have to make a point in 2009 to make more visits. When I was here the staff is really freindly and my orders were made...\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-01-01\", \"user_name\": \"patricia r.\", \"id\": \"DQo_WzHxVGuBYWgyyRQBpw\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4234+University+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4_half.png\", \"country_code\": \"US\", \"id\": \"JdgB2EqwAxxuHOChlf5Ncw\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/JdgB2EqwAxxuHOChlf5Ncw\", \"review_count\": 12, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.659900665283203, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4_half.png\", \"address1\": \"1309 NE 43rd St\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065473219\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"delis\", \"search_url\": \"http://www.yelp.com/search?find_loc=1309+NE+43rd+St%2C+Seattle%2C+WA+98105&cflt=delis\", \"name\": \"Delis\"}, {\"category_filter\": \"breakfast_brunch\", \"search_url\": \"http://www.yelp.com/search?find_loc=1309+NE+43rd+St%2C+Seattle%2C+WA+98105&cflt=breakfast_brunch\", \"name\": \"Breakfast & Brunch\"}, {\"category_filter\": \"coffee\", \"search_url\": \"http://www.yelp.com/search?find_loc=1309+NE+43rd+St%2C+Seattle%2C+WA+98105&cflt=coffee\", \"name\": \"Coffee & Tea\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/Qvaz8WbJx0cg9CnMTda_gQ/ms\", \"distance\": 0.34201163053512573, \"name\": \"Ugly Mug Cafe\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/ugly-mug-cafe-seattle\", \"country\": \"USA\", \"avg_rating\": 4.5, \"longitude\": -122.314002990723, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/Qvaz8WbJx0cg9CnMTda_gQ/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/eOM-UmzaUOl4UNcWNlyc9Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/JdgB2EqwAxxuHOChlf5Ncw?srid=rEViqs21AmA5dKY_qlb50w\", \"url\": \"http://www.yelp.com/biz/ugly-mug-cafe-seattle#hrid:rEViqs21AmA5dKY_qlb50w\", \"user_url\": \"http://www.yelp.com/user_details?userid=SX3MSrbmoOxj18DXDgyIrg\", \"text_excerpt\": \"This is what a cafe should be, in so many ways.\\nIt's small, cozy, and they make a damn good americano. The drip coffee is ridiculously cheap for refills (I...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/eOM-UmzaUOl4UNcWNlyc9Q/ms\", \"date\": \"2008-12-11\", \"user_name\": \"Winona R.\", \"id\": \"rEViqs21AmA5dKY_qlb50w\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/nKFC8ROUTJkoCx9n1xf3nQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/JdgB2EqwAxxuHOChlf5Ncw?srid=46X-SbFU33rINEffyMzsvA\", \"url\": \"http://www.yelp.com/biz/ugly-mug-cafe-seattle#hrid:46X-SbFU33rINEffyMzsvA\", \"user_url\": \"http://www.yelp.com/user_details?userid=WM-yXO56qcnJUcPPNRIDVQ\", \"text_excerpt\": \": ) :) :) \\nunpretentious people. oh so nice.\\nsandwiches. oh so lovely.\\n\\nI go here at least once a week.\\nand I am ready to spend the rest of my college...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/nKFC8ROUTJkoCx9n1xf3nQ/ms\", \"date\": \"2008-12-02\", \"user_name\": \"Alexis P.\", \"id\": \"46X-SbFU33rINEffyMzsvA\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/8usaIGLNFIqa0nqWKNVp5g/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/JdgB2EqwAxxuHOChlf5Ncw?srid=froZlvfbGAMH9lFNAzogKA\", \"url\": \"http://www.yelp.com/biz/ugly-mug-cafe-seattle#hrid:froZlvfbGAMH9lFNAzogKA\", \"user_url\": \"http://www.yelp.com/user_details?userid=BArAElwhArb0DcM7pblUUQ\", \"text_excerpt\": \"My new favorite coffee shop off the ave. Small enough that you could miss it even if you walked right past it. Yet it's never super crowded even though...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/8usaIGLNFIqa0nqWKNVp5g/ms\", \"date\": \"2008-11-12\", \"user_name\": \"Kiel H.\", \"id\": \"froZlvfbGAMH9lFNAzogKA\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=1309+NE+43rd+St%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"AXQhTGR3PLFk1TW72CbqvA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/AXQhTGR3PLFk1TW72CbqvA\", \"review_count\": 57, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.657501220703097, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4116 University Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066750850\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"restaurants\", \"search_url\": \"http://www.yelp.com/search?find_loc=4116+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=restaurants\", \"name\": \"Restaurants\"}, {\"category_filter\": \"coffee\", \"search_url\": \"http://www.yelp.com/search?find_loc=4116+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=coffee\", \"name\": \"Coffee & Tea\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/d_sKobWrR8Mp523bkABVaw/ms\", \"distance\": 0.19629652798175812, \"name\": \"Cafe Solstice\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/cafe-solstice-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.31300354003901, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/d_sKobWrR8Mp523bkABVaw/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/DmV6-9buUm3dQm8EXFtnog/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/AXQhTGR3PLFk1TW72CbqvA?srid=5KiYNRgv7LgOwG9KCqWmEw\", \"url\": \"http://www.yelp.com/biz/cafe-solstice-seattle#hrid:5KiYNRgv7LgOwG9KCqWmEw\", \"user_url\": \"http://www.yelp.com/user_details?userid=mQXcHPIaLEHGC0PF5jEwSQ\", \"text_excerpt\": \"So, over the years I have passed this place numerous times and for some reason thought it was a burger joint and never went inside. When my friend suggested...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/DmV6-9buUm3dQm8EXFtnog/ms\", \"date\": \"2009-03-03\", \"user_name\": \"Jessica S.\", \"id\": \"5KiYNRgv7LgOwG9KCqWmEw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/EhKsRxiIcXzyTQGcmNhFJw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/AXQhTGR3PLFk1TW72CbqvA?srid=P_KhnSAc58FLGdoOQj3Nqg\", \"url\": \"http://www.yelp.com/biz/cafe-solstice-seattle#hrid:P_KhnSAc58FLGdoOQj3Nqg\", \"user_url\": \"http://www.yelp.com/user_details?userid=xpH89ijdAibgZok0ulsaqA\", \"text_excerpt\": \"Great place to hang out, get work done, and practically on campus while still technically not on campus. So much so that this place is often packed with...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/EhKsRxiIcXzyTQGcmNhFJw/ms\", \"date\": \"2009-02-25\", \"user_name\": \"Alan F.\", \"id\": \"P_KhnSAc58FLGdoOQj3Nqg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/y0gjCasc-GCgaJJyrZWmFw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/AXQhTGR3PLFk1TW72CbqvA?srid=qBLUfwWLo7kKu0czrnYGmA\", \"url\": \"http://www.yelp.com/biz/cafe-solstice-seattle#hrid:qBLUfwWLo7kKu0czrnYGmA\", \"user_url\": \"http://www.yelp.com/user_details?userid=DrkjTMYmjd4GZt0rLN44EA\", \"text_excerpt\": \"On my most recent visit I saw they sell PBR by the can. You just earned yourself another star! Someday I would like to be their first customer-first thing...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/y0gjCasc-GCgaJJyrZWmFw/ms\", \"date\": \"2009-02-17\", \"user_name\": \"Denise E.\", \"id\": \"qBLUfwWLo7kKu0czrnYGmA\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4116+University+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"1S1x7GT-cCinChE4bK-q8A\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/1S1x7GT-cCinChE4bK-q8A\", \"review_count\": 36, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.657501220703097, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4142 Brooklyn Ave NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065488009\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"thai\", \"search_url\": \"http://www.yelp.com/search?find_loc=4142+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105&cflt=thai\", \"name\": \"Thai\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/w2ZnAZPWdjcOolj9GsgQog/ms\", \"distance\": 0.17908205091953278, \"name\": \"Little Thai Restaurant\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/little-thai-restaurant-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.314002990723, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/w2ZnAZPWdjcOolj9GsgQog/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/RzqknnjLYDQwphidEwHMgw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/1S1x7GT-cCinChE4bK-q8A?srid=mIN2x1mtG9vDniXEZjt2Pg\", \"url\": \"http://www.yelp.com/biz/little-thai-restaurant-seattle#hrid:mIN2x1mtG9vDniXEZjt2Pg\", \"user_url\": \"http://www.yelp.com/user_details?userid=fSZqVWr0uR-nOPc2XZRW1Q\", \"text_excerpt\": \"After a long break from coming to the Little Thai restaurant, I came back and the service wasn't quite as prompt (although my water glass was never empty,...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/RzqknnjLYDQwphidEwHMgw/ms\", \"date\": \"2009-02-21\", \"user_name\": \"Nicholas H.\", \"id\": \"mIN2x1mtG9vDniXEZjt2Pg\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/pJWS-KzIZnLFU8w6T47bAQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/1S1x7GT-cCinChE4bK-q8A?srid=Atzd2Q4u8zw60t8_-_rjwQ\", \"url\": \"http://www.yelp.com/biz/little-thai-restaurant-seattle#hrid:Atzd2Q4u8zw60t8_-_rjwQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=4FExrLRGo90PzgGiZXOnag\", \"text_excerpt\": \"I heard great things about this place. It's kinda tucked out of the way from the Ave, however they still manage to pull enough business away from the main...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/pJWS-KzIZnLFU8w6T47bAQ/ms\", \"date\": \"2009-02-17\", \"user_name\": \"Eugene C.\", \"id\": \"Atzd2Q4u8zw60t8_-_rjwQ\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_2.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/RdwqVGC1pk4z6bht9ION6Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_2.png\", \"rating\": 2, \"mobile_uri\": \"http://mobile.yelp.com/biz/1S1x7GT-cCinChE4bK-q8A?srid=vSDlrB6IMpJzed_GWdA97g\", \"url\": \"http://www.yelp.com/biz/little-thai-restaurant-seattle#hrid:vSDlrB6IMpJzed_GWdA97g\", \"user_url\": \"http://www.yelp.com/user_details?userid=pnQQTOczvSX4qjtWjntKsA\", \"text_excerpt\": \"This place was quite interesting. Walked in and the place smelt like rotting fish, but one of my friends said that the food was some of the best they had...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/RdwqVGC1pk4z6bht9ION6Q/ms\", \"date\": \"2009-01-18\", \"user_name\": \"Jody N.\", \"id\": \"vSDlrB6IMpJzed_GWdA97g\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4142+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"yqQ6Umb2Rc9mJcsgxswt-A\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/yqQ6Umb2Rc9mJcsgxswt-A\", \"review_count\": 46, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.659815999999999, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"1319 NE 43rd St\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2066327708\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"mideastern\", \"search_url\": \"http://www.yelp.com/search?find_loc=1319+NE+43rd+St%2C+Seattle%2C+WA+98105&cflt=mideastern\", \"name\": \"Middle Eastern\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/L2VGjwbc304XjR2XL1uX5w/ms\", \"distance\": 0.33599480986595154, \"name\": \"Cedars Restaurant\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/cedars-restaurant-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.314031, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/L2VGjwbc304XjR2XL1uX5w/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/W4Kx0puqbeCero53d6vUoQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/yqQ6Umb2Rc9mJcsgxswt-A?srid=IclPL0M4ZMNJrMMioU9mAQ\", \"url\": \"http://www.yelp.com/biz/cedars-restaurant-seattle#hrid:IclPL0M4ZMNJrMMioU9mAQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=1FfV66Q-wneIOsf4QXmOog\", \"text_excerpt\": \"3.5 stars if i could. Good but I feel it's overpriced. I'm scared to try the shady places on the ave though. At least I know what to expect here. I always...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/W4Kx0puqbeCero53d6vUoQ/ms\", \"date\": \"2009-02-21\", \"user_name\": \"Katarina T.\", \"id\": \"IclPL0M4ZMNJrMMioU9mAQ\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/9ZEIUbtEbbqQaObzF0iWWA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/yqQ6Umb2Rc9mJcsgxswt-A?srid=kDoCWxFflFJGr0vEfJiZog\", \"url\": \"http://www.yelp.com/biz/cedars-restaurant-seattle#hrid:kDoCWxFflFJGr0vEfJiZog\", \"user_url\": \"http://www.yelp.com/user_details?userid=PB3OGUgRSajFx18EBUwwEQ\", \"text_excerpt\": \"Been coming here on and off for about six years now (since I was an undergrad at the UW) and the food and service have always been good, friendly, and...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/9ZEIUbtEbbqQaObzF0iWWA/ms\", \"date\": \"2009-02-05\", \"user_name\": \"Sam P.\", \"id\": \"kDoCWxFflFJGr0vEfJiZog\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/rDND9Jz0tQ7xtEWZXNS9PA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/yqQ6Umb2Rc9mJcsgxswt-A?srid=ruX11NtaMnEdmOv-BJ6TGg\", \"url\": \"http://www.yelp.com/biz/cedars-restaurant-seattle#hrid:ruX11NtaMnEdmOv-BJ6TGg\", \"user_url\": \"http://www.yelp.com/user_details?userid=v9dkLIe0JZXtghSwPrMy6Q\", \"text_excerpt\": \"I'm not sure that a lot of these people realize that there are *two* Cedars. There's a fancier one on Brooklyn Avenue, which has both Indian dishes and...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/rDND9Jz0tQ7xtEWZXNS9PA/ms\", \"date\": \"2009-01-19\", \"user_name\": \"Benjamin J.\", \"id\": \"ruX11NtaMnEdmOv-BJ6TGg\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=1319+NE+43rd+St%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"6OVriioGG7w7Nwq5Q25WtA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/6OVriioGG7w7Nwq5Q25WtA\", \"review_count\": 170, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.657264709472699, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4130 Roosevelt Way NE\", \"address2\": \"\", \"address3\": \"\", \"phone\": \"2065478230\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"newamerican\", \"search_url\": \"http://www.yelp.com/search?find_loc=4130+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105&cflt=newamerican\", \"name\": \"American (New)\"}, {\"category_filter\": \"breakfast_brunch\", \"search_url\": \"http://www.yelp.com/search?find_loc=4130+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105&cflt=breakfast_brunch\", \"name\": \"Breakfast & Brunch\"}, {\"category_filter\": \"tradamerican\", \"search_url\": \"http://www.yelp.com/search?find_loc=4130+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105&cflt=tradamerican\", \"name\": \"American (Traditional)\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/RZAJtL11FeW_lyhEarwRgw/ms\", \"distance\": 0.20421044528484344, \"name\": \"Portage Bay Cafe\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/portage-bay-cafe-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.31781005859401, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/RZAJtL11FeW_lyhEarwRgw/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/eOM-UmzaUOl4UNcWNlyc9Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/6OVriioGG7w7Nwq5Q25WtA?srid=t0iI2qQalTfIxBGQO12TGw\", \"url\": \"http://www.yelp.com/biz/portage-bay-cafe-seattle#hrid:t0iI2qQalTfIxBGQO12TGw\", \"user_url\": \"http://www.yelp.com/user_details?userid=SX3MSrbmoOxj18DXDgyIrg\", \"text_excerpt\": \"Their mimosas rock. Perfect for after finals! Just sayin'....\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/eOM-UmzaUOl4UNcWNlyc9Q/ms\", \"date\": \"2009-03-02\", \"user_name\": \"Winona R.\", \"id\": \"t0iI2qQalTfIxBGQO12TGw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/BMv0GlGwhXNjYNMGrfIKHA/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/6OVriioGG7w7Nwq5Q25WtA?srid=en_MbTFCMS9CXn_2QZ5Z8Q\", \"url\": \"http://www.yelp.com/biz/portage-bay-cafe-seattle#hrid:en_MbTFCMS9CXn_2QZ5Z8Q\", \"user_url\": \"http://www.yelp.com/user_details?userid=cbzb5drN8nLUZfNwcIG1Gw\", \"text_excerpt\": \"Met a couple of friends here for brunch. The menu has some great selections(some great looking spins on Benedict) but I chose to split a Weekend Hash...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/BMv0GlGwhXNjYNMGrfIKHA/ms\", \"date\": \"2009-02-28\", \"user_name\": \"LuAnne W.\", \"id\": \"en_MbTFCMS9CXn_2QZ5Z8Q\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/nXXfw9B9FeQ8kP_K6bajJg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/6OVriioGG7w7Nwq5Q25WtA?srid=MDximg6EmV2xu-YmIRuCyg\", \"url\": \"http://www.yelp.com/biz/portage-bay-cafe-seattle#hrid:MDximg6EmV2xu-YmIRuCyg\", \"user_url\": \"http://www.yelp.com/user_details?userid=FcUfqqUQDhGKV_FJ8korFQ\", \"text_excerpt\": \"Everything is great but the wait. There will without a doubt be an hour long line - SO:\\n\\nCall ahead and put your name on the list if you wanna sit down...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/nXXfw9B9FeQ8kP_K6bajJg/ms\", \"date\": \"2009-02-27\", \"user_name\": \"Lauren U.\", \"id\": \"MDximg6EmV2xu-YmIRuCyg\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4130+Roosevelt+Way+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"USoCUrnuGw1mwzVpo_dlmA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/USoCUrnuGw1mwzVpo_dlmA\", \"review_count\": 26, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.656965999999997, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4106 Brooklyn Ave NE\", \"address2\": \"Ste 102A\", \"address3\": \"\", \"phone\": \"2065472369\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"latin\", \"search_url\": \"http://www.yelp.com/search?find_loc=4106+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105&cflt=latin\", \"name\": \"Latin American\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/LKQWJRVUzAz5CAxwR5rTcA/ms\", \"distance\": 0.13925831019878387, \"name\": \"Guanaco's Tacos Pupuseria\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/guanacos-tacos-pupuseria-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.314367, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/LKQWJRVUzAz5CAxwR5rTcA/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/gd_uz1EUtLXFKV9GlIOLOQ/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"rating\": 4, \"mobile_uri\": \"http://mobile.yelp.com/biz/USoCUrnuGw1mwzVpo_dlmA?srid=YymXOqa5pMH2EFu64CLOlQ\", \"url\": \"http://www.yelp.com/biz/guanacos-tacos-pupuseria-seattle#hrid:YymXOqa5pMH2EFu64CLOlQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=-Mv4U-vZOOnSkiy7i4MEMQ\", \"text_excerpt\": \"I have never been to El Salvador but I love the food at Guanaco's Tacos.\\n\\nI work near University Avenue and am frequently disappointed by the lack of...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/gd_uz1EUtLXFKV9GlIOLOQ/ms\", \"date\": \"2009-03-05\", \"user_name\": \"Jeong K.\", \"id\": \"YymXOqa5pMH2EFu64CLOlQ\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/7n8FyHMt7U-t4AIyGik2Vw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/USoCUrnuGw1mwzVpo_dlmA?srid=W264l0uKVkpnZ54U6UtH6g\", \"url\": \"http://www.yelp.com/biz/guanacos-tacos-pupuseria-seattle#hrid:W264l0uKVkpnZ54U6UtH6g\", \"user_url\": \"http://www.yelp.com/user_details?userid=yCpE2Mf8RKdKjkhNxL7MVQ\", \"text_excerpt\": \"Reasonably tasty and definitely affordable. I can't knock any place too hard when you can get a decent meal for under $6. I tried 3 different vegetarian...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/7n8FyHMt7U-t4AIyGik2Vw/ms\", \"date\": \"2009-03-04\", \"user_name\": \"Kimberley D.\", \"id\": \"W264l0uKVkpnZ54U6UtH6g\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/j9mJUWqEKnHMrNaz-_R-Jw/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/USoCUrnuGw1mwzVpo_dlmA?srid=Db4RwWlw905CiiRQr-2gCQ\", \"url\": \"http://www.yelp.com/biz/guanacos-tacos-pupuseria-seattle#hrid:Db4RwWlw905CiiRQr-2gCQ\", \"user_url\": \"http://www.yelp.com/user_details?userid=wqkXwOT7k-QQJB5Eiu4ykA\", \"text_excerpt\": \"I'm not sure if I still have not recovered from my food aversion (I got food poisoning from a pupusa at a different El Salvadoran restaurant), but for some...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/j9mJUWqEKnHMrNaz-_R-Jw/ms\", \"date\": \"2009-02-27\", \"user_name\": \"Suzanna C.\", \"id\": \"Db4RwWlw905CiiRQr-2gCQ\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4106+Brooklyn+Ave+NE%2C+Seattle%2C+WA+98105\"}, {\"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_4.png\", \"country_code\": \"US\", \"id\": \"G_xjBimSuQ73gEg1wYDacA\", \"is_closed\": false, \"city\": \"Seattle\", \"mobile_url\": \"http://mobile.yelp.com/biz/G_xjBimSuQ73gEg1wYDacA\", \"review_count\": 30, \"zip\": \"98105\", \"state\": \"WA\", \"latitude\": 47.658562000000003, \"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_4.png\", \"address1\": \"4214 University Way NE\", \"address2\": \"In Alley\", \"address3\": \"\", \"phone\": \"2066333030\", \"state_code\": \"WA\", \"categories\": [{\"category_filter\": \"coffee\", \"search_url\": \"http://www.yelp.com/search?find_loc=4214+University+Way+NE%2C+Seattle%2C+WA+98105&cflt=coffee\", \"name\": \"Coffee & Tea\"}], \"photo_url\": \"http://static.px.yelp.com/bpthumb/g4okDtuPykfmfX9zZfuZqQ/ms\", \"distance\": 0.26044076681137085, \"name\": \"Allegro Espresso Bar\", \"neighborhoods\": [{\"url\": \"http://www.yelp.com/search?find_loc=University+District%2C+Seattle%2C+WA\", \"name\": \"University District\"}], \"url\": \"http://www.yelp.com/biz/allegro-espresso-bar-seattle\", \"country\": \"USA\", \"avg_rating\": 4.0, \"longitude\": -122.313174, \"photo_url_small\": \"http://static.px.yelp.com/bpthumb/g4okDtuPykfmfX9zZfuZqQ/ss\", \"reviews\": [{\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_5.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_extra_small.gif\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_5.png\", \"rating\": 5, \"mobile_uri\": \"http://mobile.yelp.com/biz/G_xjBimSuQ73gEg1wYDacA?srid=psJ9urfGNRSo4kuf99vyfw\", \"url\": \"http://www.yelp.com/biz/allegro-espresso-bar-seattle#hrid:psJ9urfGNRSo4kuf99vyfw\", \"user_url\": \"http://www.yelp.com/user_details?userid=CU0biDpn1dDnxBGi4EDJLA\", \"text_excerpt\": \"Still as great as ever, but now you just have to put up with the construction crew working in the alley building the complex next door. It's been getting...\", \"user_photo_url\": \"http://static.px.yelp.com/static/20090305/i/new/gfx/blank_user_small.gif\", \"date\": \"2009-03-05\", \"user_name\": \"Melissa C.\", \"id\": \"psJ9urfGNRSo4kuf99vyfw\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_3.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/eOM-UmzaUOl4UNcWNlyc9Q/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_3.png\", \"rating\": 3, \"mobile_uri\": \"http://mobile.yelp.com/biz/G_xjBimSuQ73gEg1wYDacA?srid=LK9bH7MnzGaTSB0CeHT28Q\", \"url\": \"http://www.yelp.com/biz/allegro-espresso-bar-seattle#hrid:LK9bH7MnzGaTSB0CeHT28Q\", \"user_url\": \"http://www.yelp.com/user_details?userid=SX3MSrbmoOxj18DXDgyIrg\", \"text_excerpt\": \"I want to like the allegro more than I actually DO like it. Their coffee is kind of mediocre. I have had great americanos, but their lattes constantly suck....\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/eOM-UmzaUOl4UNcWNlyc9Q/ms\", \"date\": \"2009-02-26\", \"user_name\": \"Winona R.\", \"id\": \"LK9bH7MnzGaTSB0CeHT28Q\"}, {\"rating_img_url_small\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_small_1.png\", \"user_photo_url_small\": \"http://static.px.yelp.com/upthumb/b7QtyDNqgcmuJvjQ6Z8bJg/ss\", \"rating_img_url\": \"http://static.px.yelp.com/static/20090305/i/new/ico/stars/stars_1.png\", \"rating\": 1, \"mobile_uri\": \"http://mobile.yelp.com/biz/G_xjBimSuQ73gEg1wYDacA?srid=5Zi5FayWvo11AvOAaYEx-A\", \"url\": \"http://www.yelp.com/biz/allegro-espresso-bar-seattle#hrid:5Zi5FayWvo11AvOAaYEx-A\", \"user_url\": \"http://www.yelp.com/user_details?userid=x7nq33xT7swKx1Q78jZr8Q\", \"text_excerpt\": \"I am a barista, and I must say that the worst coffee experience I ever had was at this place.\\n\\nI ordered just a latte. With a splenda. Okay, I know that...\", \"user_photo_url\": \"http://static.px.yelp.com/upthumb/b7QtyDNqgcmuJvjQ6Z8bJg/ms\", \"date\": \"2009-02-23\", \"user_name\": \"Jesse L.\", \"id\": \"5Zi5FayWvo11AvOAaYEx-A\"}], \"nearby_url\": \"http://www.yelp.com/search?find_loc=4214+University+Way+NE%2C+Seattle%2C+WA+98105\"}]}"
@@ -0,0 +1,22 @@
1
+ require 'spec'
2
+
3
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
4
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
5
+ require 'yelp'
6
+
7
+ TEST_RESPONSES = YAML.load(File.read(File.join(File.dirname(__FILE__), 'responses.yml')))
8
+
9
+ module Kernel
10
+ alias_method :open_without_test_response_injection, :open
11
+ def open(name, *rest, &block)
12
+ if TEST_RESPONSES.keys.include?(name)
13
+ return StringIO.new(TEST_RESPONSES[name])
14
+ else
15
+ open_without_test_response_injection(name, *rest, &block)
16
+ end
17
+ end
18
+ end
19
+
20
+ Spec::Runner.configure do |config|
21
+
22
+ end
data/spec/yelp_spec.rb ADDED
@@ -0,0 +1,86 @@
1
+ require 'spec_helper'
2
+
3
+ describe Yelp do
4
+ describe Yelp::Query do
5
+ describe 'instance method' do
6
+ describe 'initialize' do
7
+ describe 'given a valid Yelp URL' do
8
+ describe 'that returns JSON' do
9
+ describe 'with a message code of 0' do
10
+ it 'should return Query constructed from JSON response' do
11
+ url = 'http://api.yelp.com/business_review_search?ywsid=TEST_YWSID&tl_lat=47.65&tl_long=-122.31&br_lat=47.66&br_long=-122.32&num_biz_requested=20'
12
+ query = Yelp::Query.new url
13
+ end
14
+ end
15
+
16
+ describe 'with a message code of 1' do
17
+ it 'should raise Yelp::Error::ServerError' do
18
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_1' }.should raise_error(Yelp::Error::ServerError)
19
+ end
20
+ end
21
+
22
+ describe 'with a message code of 2' do
23
+ it 'should raise Yelp::Error::InvalidYWSID' do
24
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_2' }.should raise_error(Yelp::Error::InvalidYWSID)
25
+ end
26
+ end
27
+
28
+ describe 'with a message code of 3' do
29
+ it 'should raise Yelp::Error::MissingYWSID' do
30
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_3' }.should raise_error(Yelp::Error::MissingYWSID)
31
+ end
32
+ end
33
+
34
+ describe 'with a message code of 4' do
35
+ it 'should raise Yelp::Error::ExceededDailyAPIRequestLimit' do
36
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_4' }.should raise_error(Yelp::Error::ExceededDailyAPIRequestLimit)
37
+ end
38
+ end
39
+
40
+ describe 'with a message code of 5' do
41
+ it 'should raise Yelp::Error::APINotAvailable' do
42
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_5' }.should raise_error(Yelp::Error::APINotAvailable)
43
+ end
44
+ end
45
+
46
+ describe 'with a message code of 6' do
47
+ it 'should raise Yelp::Error::ServerError' do
48
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_6' }.should raise_error(Yelp::Error::InvalidRequest)
49
+ end
50
+ end
51
+
52
+ describe 'with a message code of 200' do
53
+ it 'should raise Yelp::Error::UnspecifiedLocation' do
54
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_200' }.should raise_error(Yelp::Error::UnspecifiedLocation)
55
+ end
56
+ end
57
+
58
+ describe 'with a message code of 201' do
59
+ it 'should raise Yelp::Error::BadTerm' do
60
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_201' }.should raise_error(Yelp::Error::BadTerm)
61
+ end
62
+ end
63
+
64
+ describe 'with a message code of 202' do
65
+ it 'should raise Yelp::Error::BadLocation' do
66
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_202' }.should raise_error(Yelp::Error::BadLocation)
67
+ end
68
+ end
69
+
70
+ describe 'with a message code of 203' do
71
+ it 'should raise Yelp::Error::AreaTooLarge' do
72
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_203' }.should raise_error(Yelp::Error::AreaTooLarge)
73
+ end
74
+ end
75
+
76
+ describe 'with a message code of 205' do
77
+ it 'should raise Yelp::Error::UnknownCategory' do
78
+ lambda{ Yelp::Query.new 'http://api.yelp.com/TEST_MESSAGE_CODE_205' }.should raise_error(Yelp::Error::UnknownCategory)
79
+ end
80
+ end
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
86
+ end
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jwulff-yelp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - John Wulff
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-03-06 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: json
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.1.3
24
+ version:
25
+ description:
26
+ email: john@johnwulff.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README.rdoc
33
+ - LICENSE
34
+ files:
35
+ - README.rdoc
36
+ - lib/yelp
37
+ - lib/yelp/business.rb
38
+ - lib/yelp/category.rb
39
+ - lib/yelp/entity.rb
40
+ - lib/yelp/error.rb
41
+ - lib/yelp/neighborhood.rb
42
+ - lib/yelp/query.rb
43
+ - lib/yelp/review.rb
44
+ - lib/yelp/yelp.rb
45
+ - lib/yelp.rb
46
+ - spec/responses.yml
47
+ - spec/spec_helper.rb
48
+ - spec/yelp_spec.rb
49
+ - LICENSE
50
+ has_rdoc: true
51
+ homepage: http://github.com/jwulff/yelp
52
+ post_install_message:
53
+ rdoc_options:
54
+ - --inline-source
55
+ - --charset=UTF-8
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: "0"
63
+ version:
64
+ required_rubygems_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: "0"
69
+ version:
70
+ requirements: []
71
+
72
+ rubyforge_project:
73
+ rubygems_version: 1.2.0
74
+ signing_key:
75
+ specification_version: 2
76
+ summary: TODO
77
+ test_files: []
78
+