bento_search 1.4.3 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d67167bf8656459a9a479ca28f6d4354b34e81b
4
- data.tar.gz: 93a8999f1516121bbf450a5bd6f043996afe81f1
3
+ metadata.gz: e070ceebebab6e8786050986873ee02f05990db9
4
+ data.tar.gz: e69e6151f6e2205de884717a1b4fd2cfcce95c40
5
5
  SHA512:
6
- metadata.gz: 79628ab6dd212f48894a96bba69f40629715fa7c12eaf29aca8fd65558d4ee4c1f1f70c95e3d620847b4579f57ebc60b5eac8131c44357cb903642bd8a9c28dc
7
- data.tar.gz: de40b492179b7088af30eeb40e34f6eba74f7d1da2c4573ea07a2f0adc9f6c40082906f80b29f3b8b87113119d4c717e3e1cbd22f12e0b7951bffecb58f7f06f
6
+ metadata.gz: 43541b9f73943bd5d61e648f73e337104df2dc8a8cc01833106a92614a1cbcb14094eaf2e8364fbda1a135f6ed165275745aa3a11e0263b16a3a23b93e995159
7
+ data.tar.gz: 9d515c11008d35b0bbca0ab20b744818f9a17aabc906990f14715e87c43da9b423cd0a3e22ff3f126e18b12f4a79cf7609a7ea12e1c0f86178fb56c11424c886
@@ -89,12 +89,22 @@ module BentoSearch
89
89
  # Have to use different API endpoint, can't do a fielded search.
90
90
  url = base_url + "volumes/#{CGI.escape id}"
91
91
 
92
+ if configuration.api_key
93
+ url += "?key=#{configuration.api_key}"
94
+ end
95
+
92
96
  response = http_client.get( url )
93
97
 
94
98
  if response.status == 404
95
99
  raise BentoSearch::NotFound.new("ID: #{id}")
96
100
  end
97
101
 
102
+ # GBS has switched to returning a 503 for bad id's???
103
+ # Prob a bug on Google's end, but we have to deal with it.
104
+ if response.status == 503
105
+ raise BentoSearch::NotFound.new("ID: #{id} (503 error from Google, tests show indicates not found ID however)")
106
+ end
107
+
98
108
  json = MultiJson.load( response.body )
99
109
 
100
110
  if json["error"]
@@ -1,3 +1,3 @@
1
1
  module BentoSearch
2
- VERSION = "1.4.3"
2
+ VERSION = "1.4.4"
3
3
  end
@@ -118,8 +118,8 @@ class GoogleSiteSearchTest < ActiveSupport::TestCase
118
118
  end
119
119
 
120
120
  test_with_cassette("gets format string", :google_site) do
121
- results = @engine.search("Adobe PDF")
122
-
121
+ results = @engine.search("PDF")
122
+
123
123
  # assume at least one result had a PDF format, which it does
124
124
  # in our current VCR capture. For a new one, find a search where
125
125
  # it does.
@@ -4,7 +4,7 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.googleapis.com/books/v1/volumes?maxResults=10&q=%22mongy%20frongy%20alkdjf%20mzytladf%22
6
6
  body:
7
- encoding: US-ASCII
7
+ encoding: UTF-8
8
8
  string: ''
9
9
  headers: {}
10
10
  response:
@@ -13,13 +13,16 @@ http_interactions:
13
13
  message: OK
14
14
  headers:
15
15
  Expires:
16
- - Wed, 22 Aug 2012 17:29:38 GMT
16
+ - Mon, 21 Sep 2015 14:28:04 GMT
17
17
  Date:
18
- - Wed, 22 Aug 2012 17:29:38 GMT
18
+ - Mon, 21 Sep 2015 14:28:04 GMT
19
19
  Cache-Control:
20
20
  - private, max-age=0, must-revalidate, no-transform
21
21
  Etag:
22
- - ! '"5GSe85DoVh7vVXxRyeM6HeaC0Cg/W6k8nbDP-T9StSHXQg5D9u2ieE8"'
22
+ - '"AEqHJ39cYOcHij976IZqD9LCWzE/oMWMqbsluP5m2PCo8Y7WmWeHGP4"'
23
+ Vary:
24
+ - Origin
25
+ - X-Origin
23
26
  Content-Type:
24
27
  - application/json; charset=UTF-8
25
28
  X-Content-Type-Options:
@@ -28,13 +31,21 @@ http_interactions:
28
31
  - SAMEORIGIN
29
32
  X-Xss-Protection:
30
33
  - 1; mode=block
34
+ Content-Length:
35
+ - '47'
31
36
  Server:
32
37
  - GSE
33
- Transfer-Encoding:
34
- - chunked
38
+ Alternate-Protocol:
39
+ - 443:quic,p=1
40
+ Alt-Svc:
41
+ - quic=":443"; p="1"; ma=604800
35
42
  body:
36
- encoding: US-ASCII
37
- string: ! "{\n \"kind\": \"books#volumes\",\n \"totalItems\": 0\n}\n"
43
+ encoding: UTF-8
44
+ string: |
45
+ {
46
+ "kind": "books#volumes",
47
+ "totalItems": 0
48
+ }
38
49
  http_version:
39
- recorded_at: Wed, 22 Aug 2012 17:29:38 GMT
40
- recorded_with: VCR 2.2.4
50
+ recorded_at: Mon, 21 Sep 2015 14:28:04 GMT
51
+ recorded_with: VCR 2.9.3
@@ -4,7 +4,7 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.googleapis.com/books/v1/volumes?key=BAD_KEY&maxResults=10&q=cancer
6
6
  body:
7
- encoding: US-ASCII
7
+ encoding: UTF-8
8
8
  string: ''
9
9
  headers: {}
10
10
  response:
@@ -12,12 +12,15 @@ http_interactions:
12
12
  code: 400
13
13
  message: Bad Request
14
14
  headers:
15
+ Vary:
16
+ - Origin,Accept-Encoding
17
+ - X-Origin
15
18
  Content-Type:
16
19
  - application/json; charset=UTF-8
17
20
  Date:
18
- - Mon, 06 Aug 2012 15:27:13 GMT
21
+ - Mon, 21 Sep 2015 14:28:04 GMT
19
22
  Expires:
20
- - Mon, 06 Aug 2012 15:27:13 GMT
23
+ - Mon, 21 Sep 2015 14:28:04 GMT
21
24
  Cache-Control:
22
25
  - private, max-age=0
23
26
  X-Content-Type-Options:
@@ -28,13 +31,30 @@ http_interactions:
28
31
  - 1; mode=block
29
32
  Server:
30
33
  - GSE
34
+ Alternate-Protocol:
35
+ - 443:quic,p=1
36
+ Alt-Svc:
37
+ - quic=":443"; p="1"; ma=604800
38
+ Accept-Ranges:
39
+ - none
31
40
  Transfer-Encoding:
32
41
  - chunked
33
42
  body:
34
- encoding: US-ASCII
35
- string: ! "{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"usageLimits\",\n
36
- \ \"reason\": \"keyInvalid\",\n \"message\": \"Bad Request\"\n }\n
37
- \ ],\n \"code\": 400,\n \"message\": \"Bad Request\"\n }\n}\n"
43
+ encoding: UTF-8
44
+ string: |
45
+ {
46
+ "error": {
47
+ "errors": [
48
+ {
49
+ "domain": "usageLimits",
50
+ "reason": "keyInvalid",
51
+ "message": "Bad Request"
52
+ }
53
+ ],
54
+ "code": 400,
55
+ "message": "Bad Request"
56
+ }
57
+ }
38
58
  http_version:
39
- recorded_at: Mon, 06 Aug 2012 15:27:13 GMT
40
- recorded_with: VCR 2.2.4
59
+ recorded_at: Mon, 21 Sep 2015 14:28:04 GMT
60
+ recorded_with: VCR 2.9.3
@@ -4,7 +4,7 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.googleapis.com/books/v1/volumes?maxResults=10&q=cancer
6
6
  body:
7
- encoding: US-ASCII
7
+ encoding: UTF-8
8
8
  string: ''
9
9
  headers: {}
10
10
  response:
@@ -13,13 +13,16 @@ http_interactions:
13
13
  message: OK
14
14
  headers:
15
15
  Expires:
16
- - Thu, 03 Jan 2013 00:21:28 GMT
16
+ - Mon, 21 Sep 2015 14:28:04 GMT
17
17
  Date:
18
- - Thu, 03 Jan 2013 00:21:28 GMT
18
+ - Mon, 21 Sep 2015 14:28:04 GMT
19
19
  Cache-Control:
20
20
  - private, max-age=0, must-revalidate, no-transform
21
21
  Etag:
22
- - ! '"qUmHz46zG1FyTSJljpHfN8HJvB4/lf941uGoP3mR0wysnC6bYofpyI0"'
22
+ - '"AEqHJ39cYOcHij976IZqD9LCWzE/KK950eRXdoSL_tb3tMcp5_ialPo"'
23
+ Vary:
24
+ - Origin
25
+ - X-Origin
23
26
  Content-Type:
24
27
  - application/json; charset=UTF-8
25
28
  X-Content-Type-Options:
@@ -28,388 +31,973 @@ http_interactions:
28
31
  - SAMEORIGIN
29
32
  X-Xss-Protection:
30
33
  - 1; mode=block
34
+ Content-Length:
35
+ - '33241'
31
36
  Server:
32
37
  - GSE
33
- Transfer-Encoding:
34
- - chunked
38
+ Alternate-Protocol:
39
+ - 443:quic,p=1
40
+ Alt-Svc:
41
+ - quic=":443"; p="1"; ma=604800
35
42
  body:
36
43
  encoding: UTF-8
37
- string: ! "{\n \"kind\": \"books#volumes\",\n \"totalItems\": 1240,\n \"items\":
38
- [\n {\n \"kind\": \"books#volume\",\n \"id\": \"aVTMqaclr_kC\",\n \"etag\":
39
- \"WneTtdCv7dU\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/aVTMqaclr_kC\",\n
40
- \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Alvin
41
- Silverstein\",\n \"Virginia B. Silverstein\",\n \"Laura Silverstein
42
- Nunn\"\n ],\n \"publisher\": \"Twenty First Century Books\",\n \"publishedDate\":
43
- \"2006\",\n \"description\": \"Explains different types of cancer, their
44
- causes, symptoms and treatment, and, through case studies, what it is like
45
- to live with cancer.\",\n \"industryIdentifiers\": [\n {\n \"type\":
46
- \"ISBN_10\",\n \"identifier\": \"0761328335\"\n },\n {\n \"type\":
47
- \"ISBN_13\",\n \"identifier\": \"9780761328339\"\n }\n ],\n \"pageCount\":
48
- 121,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"0.1.0.0.preview.0\",\n
49
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
50
- \ \"thumbnail\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
51
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&dq=cancer&hl=&cd=1&source=gbs_api\",\n
52
- \ \"infoLink\": \"http://books.google.com/books?id=aVTMqaclr_kC&dq=cancer&hl=&source=gbs_api\",\n
53
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=aVTMqaclr_kC\"\n
54
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
55
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
56
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
57
- false,\n \"textToSpeechPermission\": \"ALLOWED\",\n \"epub\": {\n \"isAvailable\":
58
- false\n },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
59
- \"http://books.google.com/books/reader?id=aVTMqaclr_kC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
60
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
61
- \"Explains different types of cancer, their causes, symptoms and treatment,
62
- and, through case studies, what it is like to live with cancer.\"\n }\n
63
- \ },\n {\n \"kind\": \"books#volume\",\n \"id\": \"5rF_31RVTnMC\",\n
64
- \ \"etag\": \"ccK4JS83KTI\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/5rF_31RVTnMC\",\n
65
- \ \"volumeInfo\": {\n \"title\": \"The Emperor of All Maladies\",\n \"subtitle\":
66
- \"A Biography of Cancer\",\n \"authors\": [\n \"Siddhartha Mukherjee\"\n
67
- \ ],\n \"publisher\": \"Scribner\",\n \"publishedDate\": \"2010-11-16\",\n
68
- \ \"description\": \"The Emperor of All Maladies is a magnificent, profoundly
69
- humane “biography” of cancer—from its first documented appearances thousands
70
- of years ago through the epic battles in the twentieth century to cure, control,
71
- and conquer it to a radical new understanding of its essence. Physician, researcher,
72
- and award-winning science writer, Siddhartha Mukherjee examines cancer with
73
- a cellular biologist’s precision, a historian’s perspective, and a biographer’s
74
- passion. The result is an astonishingly lucid and eloquent chronicle of a
75
- disease humans have lived with—and perished from—for more than five thousand
76
- years. The story of cancer is a story of human ingenuity, resilience, and
77
- perseverance, but also of hubris, paternalism, and misperception. Mukherjee
78
- recounts centuries of discoveries, setbacks, victories, and deaths, told through
79
- the eyes of his predecessors and peers, training their wits against an infinitely
80
- resourceful adversary that, just three decades ago, was thought to be easily
81
- vanquished in an all-out “war against cancer.” The book reads like a literary
82
- thriller with cancer as the protagonist. From the Persian Queen Atossa, whose
83
- Greek slave cut off her malignant breast, to the nineteenth-century recipients
84
- of primitive radiation and chemotherapy to Mukherjee’s own leukemia patient,
85
- Carla, The Emperor of All Maladies is about the people who have soldiered
86
- through fiercely demanding regimens in order to survive—and to increase our
87
- understanding of this iconic disease. Riveting, urgent, and surprising, The
88
- Emperor of All Maladies provides a fascinating glimpse into the future of
89
- cancer treatments. It is an illuminating book that provides hope and clarity
90
- to those seeking to demystify cancer.\",\n \"industryIdentifiers\": [\n
91
- \ {\n \"type\": \"ISBN_10\",\n \"identifier\": \"1439107955\"\n
92
- \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781439107959\"\n
93
- \ }\n ],\n \"pageCount\": 592,\n \"printType\": \"BOOK\",\n \"averageRating\":
94
- 4.5,\n \"ratingsCount\": 61,\n \"contentVersion\": \"0.2.3.0.preview.2\",\n
95
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks1.books.google.com/books?id=5rF_31RVTnMC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
96
- \ \"thumbnail\": \"http://bks1.books.google.com/books?id=5rF_31RVTnMC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
97
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=5rF_31RVTnMC&printsec=frontcover&dq=cancer&hl=&cd=2&source=gbs_api\",\n
98
- \ \"infoLink\": \"http://books.google.com/books?id=5rF_31RVTnMC&dq=cancer&hl=&source=gbs_api\",\n
99
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/The_Emperor_of_All_Maladies.html?hl=&id=5rF_31RVTnMC\"\n
100
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
101
- \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
102
- 13.11,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
103
- 11.14,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=5rF_31RVTnMC&dq=cancer&hl=&buy=&source=gbs_api\"\n
104
- \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
105
- \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
106
- \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
107
- \ \"acsTokenLink\": \"http://books.google.com/books/download/The_Emperor_of_All_Maladies-sample-epub.acsm?id=5rF_31RVTnMC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
108
- \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
109
- \"http://books.google.com/books/reader?id=5rF_31RVTnMC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
110
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
111
- \"The story of cancer is a story of human ingenuity, resilience, and perseverance,
112
- but also of hubris, paternalism, and misperception.\"\n }\n },\n {\n \"kind\":
113
- \"books#volume\",\n \"id\": \"PMbLAT1JJqUC\",\n \"etag\": \"9aO7Eb3TNUU\",\n
114
- \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/PMbLAT1JJqUC\",\n
115
- \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Oliver
116
- Gillie\"\n ],\n \"publisher\": \"Heinemann Library\",\n \"publishedDate\":
117
- \"2004-05-01\",\n \"description\": \"Provides an overview of cancer, describing
118
- what it is, what the various forms are that it takes, what it is like to live
119
- with this disease, and some of the available treatments.\",\n \"industryIdentifiers\":
120
- [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"1403451443\"\n
121
- \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781403451446\"\n
122
- \ }\n ],\n \"pageCount\": 56,\n \"printType\": \"BOOK\",\n \"contentVersion\":
123
- \"preview-1.0.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks9.books.google.com/books?id=PMbLAT1JJqUC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
124
- \ \"thumbnail\": \"http://bks9.books.google.com/books?id=PMbLAT1JJqUC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
125
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=PMbLAT1JJqUC&printsec=frontcover&dq=cancer&hl=&cd=3&source=gbs_api\",\n
126
- \ \"infoLink\": \"http://books.google.com/books?id=PMbLAT1JJqUC&dq=cancer&hl=&source=gbs_api\",\n
127
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=PMbLAT1JJqUC\"\n
128
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
129
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
130
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
131
- false,\n \"textToSpeechPermission\": \"ALLOWED\",\n \"epub\": {\n \"isAvailable\":
132
- false\n },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
133
- \"http://books.google.com/books/reader?id=PMbLAT1JJqUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
134
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
135
- \"Provides an overview of cancer, describing what it is, what the various
136
- forms are that it takes, what it is like to live with this disease, and some
137
- of the available treatments.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
138
- \ \"id\": \"_Nr57uKNEe8C\",\n \"etag\": \"4LduIm5k/xM\",\n \"selfLink\":
139
- \"https://www.googleapis.com/books/v1/volumes/_Nr57uKNEe8C\",\n \"volumeInfo\":
140
- {\n \"title\": \"Cancer\",\n \"authors\": [\n \"F. Bernoville\"\n
141
- \ ],\n \"publisher\": \"B Jain Pub Pvt Limited\",\n \"publishedDate\":
142
- \"1999-01-01\",\n \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n
143
- \ \"identifier\": \"8170212871\"\n },\n {\n \"type\": \"ISBN_13\",\n
144
- \ \"identifier\": \"9788170212874\"\n }\n ],\n \"pageCount\":
145
- 48,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"0.0.1.0.preview.0\",\n
146
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=_Nr57uKNEe8C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
147
- \ \"thumbnail\": \"http://bks3.books.google.com/books?id=_Nr57uKNEe8C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
148
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=_Nr57uKNEe8C&printsec=frontcover&dq=cancer&hl=&cd=4&source=gbs_api\",\n
149
- \ \"infoLink\": \"http://books.google.com/books?id=_Nr57uKNEe8C&dq=cancer&hl=&source=gbs_api\",\n
150
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=_Nr57uKNEe8C\"\n
151
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
152
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
153
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
154
- false,\n \"textToSpeechPermission\": \"ALLOWED\",\n \"epub\": {\n \"isAvailable\":
155
- false\n },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
156
- \"http://books.google.com/books/reader?id=_Nr57uKNEe8C&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
157
- \ \"accessViewStatus\": \"SAMPLE\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
158
- \ \"id\": \"xhN8s8QCAbQC\",\n \"etag\": \"BTJCd5lYM9o\",\n \"selfLink\":
159
- \"https://www.googleapis.com/books/v1/volumes/xhN8s8QCAbQC\",\n \"volumeInfo\":
160
- {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Farokh J. Master\"\n
161
- \ ],\n \"publisher\": \"B Jain Pub Pvt Limited\",\n \"publishedDate\":
162
- \"2003-01-01\",\n \"description\": \"In this booklet the author has tried
163
- to make the difficult problem of the treatment of cancer patients much more
164
- easier.\",\n \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n
165
- \ \"identifier\": \"817021615X\"\n },\n {\n \"type\": \"ISBN_13\",\n
166
- \ \"identifier\": \"9788170216155\"\n }\n ],\n \"pageCount\":
167
- 37,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"0.0.1.0.preview.0\",\n
168
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks5.books.google.com/books?id=xhN8s8QCAbQC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
169
- \ \"thumbnail\": \"http://bks5.books.google.com/books?id=xhN8s8QCAbQC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
170
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=xhN8s8QCAbQC&printsec=frontcover&dq=cancer&hl=&cd=5&source=gbs_api\",\n
171
- \ \"infoLink\": \"http://books.google.com/books?id=xhN8s8QCAbQC&dq=cancer&hl=&source=gbs_api\",\n
172
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=xhN8s8QCAbQC\"\n
173
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
174
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
175
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
176
- false,\n \"textToSpeechPermission\": \"ALLOWED\",\n \"epub\": {\n \"isAvailable\":
177
- false\n },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
178
- \"http://books.google.com/books/reader?id=xhN8s8QCAbQC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
179
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
180
- \"In this booklet the author has tried to make the difficult problem of the
181
- treatment of cancer patients much more easier.\"\n }\n },\n {\n \"kind\":
182
- \"books#volume\",\n \"id\": \"g_QY9jR98ZIC\",\n \"etag\": \"WcLgf59/Y20\",\n
183
- \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/g_QY9jR98ZIC\",\n
184
- \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"Personal
185
- Horoscopes 2013\",\n \"authors\": [\n \"Dan Liebman\"\n ],\n \"publisher\":
186
- \"Collins\",\n \"publishedDate\": \"2012-10-16\",\n \"description\":
187
- \"Find out what 2013 holds in store for you, Cancer. Packed with insightful
188
- information to make 2013 a meaningful year for the Crab, the fourth sign of
189
- the zodiac, Cancer: Personal Horoscopes 2013 includes: Week-by-week forecasts
190
- for your sign, covering love and relationships, family and friends, finance,
191
- health, career and travel At-a-glance monthly charts highlighting the best
192
- and worst days for romance, friendship, career, health and more Your zodiac
193
- sign’ s qualities, elements, planets and houses Personality profiles of famous
194
- Canadian and international figures born in your sign Compatibility guides
195
- for every combination of signs, detailing your best relationship matches —
196
- and those that may challenge you Start 2013 off right with your personalized
197
- look at the stars.\",\n \"industryIdentifiers\": [\n {\n \"type\":
198
- \"ISBN_10\",\n \"identifier\": \"144341848X\"\n },\n {\n \"type\":
199
- \"ISBN_13\",\n \"identifier\": \"9781443418485\"\n }\n ],\n \"pageCount\":
200
- 50,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"preview-1.0.0\",\n
201
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks4.books.google.com/books?id=g_QY9jR98ZIC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
202
- \ \"thumbnail\": \"http://bks4.books.google.com/books?id=g_QY9jR98ZIC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
203
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=g_QY9jR98ZIC&printsec=frontcover&dq=cancer&hl=&cd=6&source=gbs_api\",\n
204
- \ \"infoLink\": \"http://books.google.com/books?id=g_QY9jR98ZIC&dq=cancer&hl=&source=gbs_api\",\n
205
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=g_QY9jR98ZIC\"\n
206
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
207
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
208
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": false,\n \"publicDomain\":
209
- false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
210
- {\n \"isAvailable\": true,\n \"acsTokenLink\": \"http://books.google.com/books/download/Cancer-sample-epub.acsm?id=g_QY9jR98ZIC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
211
- \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
212
- \"http://books.google.com/books/reader?id=g_QY9jR98ZIC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
213
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
214
- \"Find out what 2013 holds in store for you, Cancer.\"\n }\n },\n {\n
215
- \ \"kind\": \"books#volume\",\n \"id\": \"0-1KOKAZBKcC\",\n \"etag\":
216
- \"+o/lhxM3LZY\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/0-1KOKAZBKcC\",\n
217
- \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"Zodiac
218
- Signs\",\n \"authors\": [\n \"Sanjay Garima\"\n ],\n \"publisher\":
219
- \"Health Harmony\",\n \"publishedDate\": \"2006-01-01\",\n \"description\":
220
- \"A gift book which tells all about the person and his life on the basis of
221
- the zodiac sign.\",\n \"industryIdentifiers\": [\n {\n \"type\":
222
- \"ISBN_10\",\n \"identifier\": \"8180560678\"\n },\n {\n \"type\":
223
- \"ISBN_13\",\n \"identifier\": \"9788180560675\"\n }\n ],\n \"pageCount\":
224
- 124,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"0.0.1.0.preview.0\",\n
225
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks6.books.google.com/books?id=0-1KOKAZBKcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
226
- \ \"thumbnail\": \"http://bks6.books.google.com/books?id=0-1KOKAZBKcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
227
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=0-1KOKAZBKcC&printsec=frontcover&dq=cancer&hl=&cd=7&source=gbs_api\",\n
228
- \ \"infoLink\": \"http://books.google.com/books?id=0-1KOKAZBKcC&dq=cancer&hl=&source=gbs_api\",\n
229
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=0-1KOKAZBKcC\"\n
230
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
231
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
232
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
233
- false,\n \"textToSpeechPermission\": \"ALLOWED\",\n \"epub\": {\n \"isAvailable\":
234
- false\n },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
235
- \"http://books.google.com/books/reader?id=0-1KOKAZBKcC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
236
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
237
- \"A gift book which tells all about the person and his life on the basis of
238
- the zodiac sign.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
239
- \"ZpUjSiq8KKgC\",\n \"etag\": \"kev1gBUVCag\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/ZpUjSiq8KKgC\",\n
240
- \ \"volumeInfo\": {\n \"title\": \"Cancer: Fight It with the Blood Type
241
- Diet\",\n \"subtitle\": \"Fight It with the Blood Type Diet\",\n \"authors\":
242
- [\n \"Dr. Peter J. D'Adamo\",\n \"Catherine Whitney\"\n ],\n \"publisher\":
243
- \"Berkley\",\n \"publishedDate\": \"2004-08-03\",\n \"description\":
244
- \"Dr. Peter J. D'Adamo has forever changed the strategy for eating right to
245
- lose weight and achieving maximum health. Because he discovered what many
246
- already instinctively knew-that a plan that works for one person may make
247
- another ill-there will never be a one-size-fits-all diet again. And since
248
- we now know that each blood type is affected differently by common diseases
249
- and conditions, there will never be a one-size-fits-all plan of action. With
250
- more than 2 million copies of his books in print, G. P. Putnam's Sons announces
251
- the launch of Dr. D'Adamo's Eat Right 4 (for) Your Type Library. Over the
252
- next two years, eight books will be published on eight different conditions,
253
- the first two being cancer and diabetes. In these books, readers will find
254
- new information individualized for their blood type and illness. In addition
255
- to the food categories Beneficial, Neutral, and Avoid, Dr. D'Adamo introduces
256
- a new category-Superbeneficial-for helping your body fight disease. He also
257
- introduces self-assessment tests to determine status and measure progress.
258
- Supplement, lifestyle, and exercise protocols are tailored to each blood type
259
- and condition. There has never been a better arsenal for fighting disease,
260
- and never an easier or clearer tool\",\n \"industryIdentifiers\": [\n {\n
261
- \ \"type\": \"ISBN_10\",\n \"identifier\": \"1440678081\"\n },\n
262
- \ {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781440678080\"\n
263
- \ }\n ],\n \"pageCount\": 224,\n \"printType\": \"BOOK\",\n \"averageRating\":
264
- 3.0,\n \"ratingsCount\": 1,\n \"contentVersion\": \"0.0.3.0.preview.2\",\n
265
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks9.books.google.com/books?id=ZpUjSiq8KKgC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
266
- \ \"thumbnail\": \"http://bks9.books.google.com/books?id=ZpUjSiq8KKgC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
267
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=ZpUjSiq8KKgC&printsec=frontcover&dq=cancer&hl=&cd=8&source=gbs_api\",\n
268
- \ \"infoLink\": \"http://books.google.com/books?id=ZpUjSiq8KKgC&dq=cancer&hl=&source=gbs_api\",\n
269
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer_Fight_It_with_the_Blood_Type_Diet.html?hl=&id=ZpUjSiq8KKgC\"\n
270
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
271
- \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
272
- 11.99,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
273
- 11.99,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=ZpUjSiq8KKgC&dq=cancer&hl=&buy=&source=gbs_api\"\n
274
- \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
275
- \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
276
- \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
277
- \ \"acsTokenLink\": \"http://books.google.com/books/download/Cancer_Fight_It_with_the_Blood_Type_Diet-sample-epub.acsm?id=ZpUjSiq8KKgC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
278
- \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
279
- \"http://books.google.com/books/reader?id=ZpUjSiq8KKgC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
280
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
281
- \"Over the next two years, eight books will be published on eight different
282
- conditions, the first two being cancer and diabetes. In these books, readers
283
- will find new information individualized for their blood type and illness.\"\n
284
- \ }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"qaxuIglnhZoC\",\n
285
- \ \"etag\": \"vUxJl0nDvSY\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/qaxuIglnhZoC\",\n
286
- \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"Its
287
- Cases, Symptoms and Treatment\",\n \"authors\": [\n \"Eli G. Jones\"\n
288
- \ ],\n \"publisher\": \"B. Jain Publishers\",\n \"publishedDate\":
289
- \"2004-01-01\",\n \"description\": \"Giving the results of over 40 years
290
- experience in the medical treatment of this disease.The author gave post graduate
291
- instructions to physicians of his method of treatment.\",\n \"industryIdentifiers\":
292
- [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"8170211425\"\n
293
- \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9788170211426\"\n
294
- \ }\n ],\n \"pageCount\": 301,\n \"printType\": \"BOOK\",\n \"contentVersion\":
295
- \"0.0.1.0.preview.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks1.books.google.com/books?id=qaxuIglnhZoC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
296
- \ \"thumbnail\": \"http://bks1.books.google.com/books?id=qaxuIglnhZoC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
297
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=qaxuIglnhZoC&printsec=frontcover&dq=cancer&hl=&cd=9&source=gbs_api\",\n
298
- \ \"infoLink\": \"http://books.google.com/books?id=qaxuIglnhZoC&dq=cancer&hl=&source=gbs_api\",\n
299
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=qaxuIglnhZoC\"\n
300
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
301
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
302
- \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
303
- false,\n \"textToSpeechPermission\": \"ALLOWED\",\n \"epub\": {\n \"isAvailable\":
304
- false\n },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
305
- \"http://books.google.com/books/reader?id=qaxuIglnhZoC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
306
- \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
307
- \"Giving the results of over 40 years experience in the medical treatment
308
- of this disease.The author gave post graduate instructions to physicians of
309
- his method of treatment.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
310
- \ \"id\": \"SI5J2zKEGsUC\",\n \"etag\": \"pvzLa0OOfHA\",\n \"selfLink\":
311
- \"https://www.googleapis.com/books/v1/volumes/SI5J2zKEGsUC\",\n \"volumeInfo\":
312
- {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Paula Taylor\"\n
313
- \ ],\n \"publisher\": \"Creative Education\",\n \"publishedDate\":
314
- \"1978\",\n \"description\": \"Describes character traits and attitudes
315
- reputedly possessed by individuals born under the sun sign Cancer.\",\n \"industryIdentifiers\":
316
- [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"0871916444\"\n
317
- \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780871916440\"\n
318
- \ }\n ],\n \"pageCount\": 47,\n \"printType\": \"BOOK\",\n \"categories\":
319
- [\n \"Body, Mind & Spirit\"\n ],\n \"contentVersion\": \"preview-1.0.0\",\n
320
- \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=SI5J2zKEGsUC&printsec=frontcover&img=1&zoom=5&source=gbs_api\",\n
321
- \ \"thumbnail\": \"http://bks8.books.google.com/books?id=SI5J2zKEGsUC&printsec=frontcover&img=1&zoom=1&source=gbs_api\"\n
322
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=SI5J2zKEGsUC&q=cancer&dq=cancer&hl=&cd=10&source=gbs_api\",\n
323
- \ \"infoLink\": \"http://books.google.com/books?id=SI5J2zKEGsUC&dq=cancer&hl=&source=gbs_api\",\n
324
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=SI5J2zKEGsUC\"\n
325
- \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
326
- \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
327
- \"US\",\n \"viewability\": \"NO_PAGES\",\n \"embeddable\": false,\n
328
- \ \"publicDomain\": false,\n \"textToSpeechPermission\": \"ALLOWED\",\n
329
- \ \"epub\": {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
330
- false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=SI5J2zKEGsUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
331
- \ \"accessViewStatus\": \"NONE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
332
- \"Describes character traits and attitudes reputedly possessed by individuals
333
- born under the sun sign Cancer.\"\n }\n }\n ]\n}\n"
44
+ string: |
45
+ {
46
+ "kind": "books#volumes",
47
+ "totalItems": 1585,
48
+ "items": [
49
+ {
50
+ "kind": "books#volume",
51
+ "id": "-TAxAAAAQBAJ",
52
+ "etag": "n9cAvaUys7o",
53
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/-TAxAAAAQBAJ",
54
+ "volumeInfo": {
55
+ "title": "The Mayo Clinic Breast Cancer Book",
56
+ "authors": [
57
+ "Mayo Clinic"
58
+ ],
59
+ "publisher": "RosettaBooks",
60
+ "publishedDate": "2012-11-16",
61
+ "description": "From the breast health experts at Mayo Clinic comes a guide to the many aspects of breast cancer—from prevention, to care and coping, to survival, to living with hope. Trustworthy information offered in a spirit of companionship. “This is the best source for readable, up-to-date information—from the world’s experts.” —Dr. Thomas J. Smith, Johns Hopkins Hospital “If you’re looking for a comprehensive, easy-to-read book about an often confusing topic, The Mayo Clinic Breast Cancer Book is for you.” —Henry M. Kuerer, M.D., Ph.D., FACS, Professor and Director, Breast Surgical Oncology Training Program, MD Anderson Cancer Center “Readers will likely return again and again to this book as a convenient source of knowledge, insight, and reassurance as they confront the many decisions required in the treatment of breast cancer.” —Clifford A. Hudis, M.D., Chief, Breast Cancer Medicine Service, Memorial Sloan-Kettering Cancer Center Mayo Clinic Cancer Center is dedicated to understanding and discovering new ways to predict, prevent, diagnose and treat cancer, transforming the quality of life for cancer patients today and into the future. With a multisite national presence, its three campuses—in Pheonix/Scottsdale, Ariz.; Jacksonville, Fla.; and Rochester, Minn.—offer a broad geographic reach to serve patients. Designated as a Comprehensive Cancer Center by the National Cancer Institute, Mayo Clinic Cancer Center is a leader in translating discoveries into effective improvements in patient care. ABOUT THE AUTHOR Mayo Clinic took root in farm fields near Rochester, Minn., in the late 1800s. It grew from the medical practice of a country doctor, William Worrall Mayo, and the partnership of his two sons, William J. and Charles H. Mayo—affectionately known as Dr. Will and Dr. Charlie. The brothers' innovative ideas and tireless work in learning and creating new surgical techniques attracted international attention. Physicians from around the world came to watch the Mayo brothers perform surgery. The Mayo brothers invited other doctors to join them, forming teams of medical experts. Today, Mayo Clinic—one of the world’s oldest and largest multispecialty group practices—comprises more than 45,000 physicians, scientists, nurses and other staff at its three locations in Rochester, Minn., Jacksonville, Fla., and Scottsdale, Ariz., and its regional community-based health care practices.",
62
+ "industryIdentifiers": [
63
+ {
64
+ "type": "ISBN_13",
65
+ "identifier": "9780795331893"
66
+ },
67
+ {
68
+ "type": "ISBN_10",
69
+ "identifier": "0795331894"
70
+ }
71
+ ],
72
+ "readingModes": {
73
+ "text": true,
74
+ "image": true
75
+ },
76
+ "pageCount": 453,
77
+ "printType": "BOOK",
78
+ "categories": [
79
+ "Health & Fitness"
80
+ ],
81
+ "averageRating": 4.5,
82
+ "ratingsCount": 2,
83
+ "maturityRating": "NOT_MATURE",
84
+ "allowAnonLogging": false,
85
+ "contentVersion": "1.2.2.0.preview.3",
86
+ "imageLinks": {
87
+ "smallThumbnail": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
88
+ "thumbnail": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
89
+ },
90
+ "language": "en",
91
+ "previewLink": "http://books.google.com/books?id=-TAxAAAAQBAJ&printsec=frontcover&dq=cancer&hl=&cd=1&source=gbs_api",
92
+ "infoLink": "http://books.google.com/books?id=-TAxAAAAQBAJ&dq=cancer&hl=&source=gbs_api",
93
+ "canonicalVolumeLink": "http://books.google.com/books/about/The_Mayo_Clinic_Breast_Cancer_Book.html?hl=&id=-TAxAAAAQBAJ"
94
+ },
95
+ "saleInfo": {
96
+ "country": "US",
97
+ "saleability": "FOR_SALE",
98
+ "isEbook": true,
99
+ "listPrice": {
100
+ "amount": 11.99,
101
+ "currencyCode": "USD"
102
+ },
103
+ "retailPrice": {
104
+ "amount": 11.99,
105
+ "currencyCode": "USD"
106
+ },
107
+ "buyLink": "http://books.google.com/books?id=-TAxAAAAQBAJ&dq=cancer&hl=&buy=&source=gbs_api",
108
+ "offers": [
109
+ {
110
+ "finskyOfferType": 1,
111
+ "listPrice": {
112
+ "amountInMicros": 1.199E7,
113
+ "currencyCode": "USD"
114
+ },
115
+ "retailPrice": {
116
+ "amountInMicros": 1.199E7,
117
+ "currencyCode": "USD"
118
+ }
119
+ }
120
+ ]
121
+ },
122
+ "accessInfo": {
123
+ "country": "US",
124
+ "viewability": "PARTIAL",
125
+ "embeddable": true,
126
+ "publicDomain": false,
127
+ "textToSpeechPermission": "ALLOWED",
128
+ "epub": {
129
+ "isAvailable": true,
130
+ "acsTokenLink": "http://books.google.com/books/download/The_Mayo_Clinic_Breast_Cancer_Book-sample-epub.acsm?id=-TAxAAAAQBAJ&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
131
+ },
132
+ "pdf": {
133
+ "isAvailable": true,
134
+ "acsTokenLink": "http://books.google.com/books/download/The_Mayo_Clinic_Breast_Cancer_Book-sample-pdf.acsm?id=-TAxAAAAQBAJ&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
135
+ },
136
+ "webReaderLink": "http://books.google.com/books/reader?id=-TAxAAAAQBAJ&hl=&printsec=frontcover&output=reader&source=gbs_api",
137
+ "accessViewStatus": "SAMPLE",
138
+ "quoteSharingAllowed": false
139
+ },
140
+ "searchInfo": {
141
+ "textSnippet": "Thomas J. Smith, Johns Hopkins Hospital “If you’re looking for a comprehensive, easy-to-read book about an often confusing topic, The Mayo Clinic Breast Cancer Book is for you.” —Henry M. Kuerer, M.D., Ph.D., FACS, Professor and ..."
142
+ }
143
+ },
144
+ {
145
+ "kind": "books#volume",
146
+ "id": "g0Fpf0mPXmQC",
147
+ "etag": "Y5kMeCHyq54",
148
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/g0Fpf0mPXmQC",
149
+ "volumeInfo": {
150
+ "title": "Anticancer, A New Way of Life, New Edition",
151
+ "authors": [
152
+ "David Servan-Schreiber MD, PhD"
153
+ ],
154
+ "publisher": "Penguin",
155
+ "publishedDate": "2009-12-31",
156
+ "description": "The New York Times and international bestseller-now updated with the latest research Anticancer has been a bestselling phenomenon since Viking first published it in fall 2008. Now, a new edition addresses current developments in cancer research and offers more tips on how people living with cancer can fight it and how healthy people can prevent it. The new edition of Anticancer includes: • The latest research on anticancer foods, including new alternatives to sugar and cautions about some that are now on the market • New information about how vitamin D strengthens the immune system • Warnings about common food contaminants that have recently been proven to contribute to cancer progression • A new chapter on mind-body approaches to stress reduction, with recent studies that show how our reactions to stress can interfere with natural defenses and how friendships can support healing in ways never before understood • A groundbreaking study showing that lifestyle modification, as originally proposed in Anticancer, reduces mortality for breast cancer by an astounding 68 percent after completion of treatment • New supporting evidence for the entire Anticancer program",
157
+ "industryIdentifiers": [
158
+ {
159
+ "type": "ISBN_13",
160
+ "identifier": "9781101163054"
161
+ },
162
+ {
163
+ "type": "ISBN_10",
164
+ "identifier": "1101163054"
165
+ }
166
+ ],
167
+ "readingModes": {
168
+ "text": true,
169
+ "image": false
170
+ },
171
+ "pageCount": 288,
172
+ "printType": "BOOK",
173
+ "categories": [
174
+ "Health & Fitness"
175
+ ],
176
+ "averageRating": 4.0,
177
+ "ratingsCount": 35,
178
+ "maturityRating": "NOT_MATURE",
179
+ "allowAnonLogging": false,
180
+ "contentVersion": "1.2.0.0.preview.2",
181
+ "imageLinks": {
182
+ "smallThumbnail": "http://books.google.com/books/content?id=g0Fpf0mPXmQC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
183
+ "thumbnail": "http://books.google.com/books/content?id=g0Fpf0mPXmQC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
184
+ },
185
+ "language": "en",
186
+ "previewLink": "http://books.google.com/books?id=g0Fpf0mPXmQC&printsec=frontcover&dq=cancer&hl=&cd=2&source=gbs_api",
187
+ "infoLink": "http://books.google.com/books?id=g0Fpf0mPXmQC&dq=cancer&hl=&source=gbs_api",
188
+ "canonicalVolumeLink": "http://books.google.com/books/about/Anticancer_A_New_Way_of_Life_New_Edition.html?hl=&id=g0Fpf0mPXmQC"
189
+ },
190
+ "saleInfo": {
191
+ "country": "US",
192
+ "saleability": "FOR_SALE",
193
+ "isEbook": true,
194
+ "listPrice": {
195
+ "amount": 18.99,
196
+ "currencyCode": "USD"
197
+ },
198
+ "retailPrice": {
199
+ "amount": 18.99,
200
+ "currencyCode": "USD"
201
+ },
202
+ "buyLink": "http://books.google.com/books?id=g0Fpf0mPXmQC&dq=cancer&hl=&buy=&source=gbs_api",
203
+ "offers": [
204
+ {
205
+ "finskyOfferType": 1,
206
+ "listPrice": {
207
+ "amountInMicros": 1.899E7,
208
+ "currencyCode": "USD"
209
+ },
210
+ "retailPrice": {
211
+ "amountInMicros": 1.899E7,
212
+ "currencyCode": "USD"
213
+ }
214
+ }
215
+ ]
216
+ },
217
+ "accessInfo": {
218
+ "country": "US",
219
+ "viewability": "PARTIAL",
220
+ "embeddable": true,
221
+ "publicDomain": false,
222
+ "textToSpeechPermission": "ALLOWED_FOR_ACCESSIBILITY",
223
+ "epub": {
224
+ "isAvailable": true,
225
+ "acsTokenLink": "http://books.google.com/books/download/Anticancer_A_New_Way_of_Life_New_Edition-sample-epub.acsm?id=g0Fpf0mPXmQC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
226
+ },
227
+ "pdf": {
228
+ "isAvailable": false
229
+ },
230
+ "webReaderLink": "http://books.google.com/books/reader?id=g0Fpf0mPXmQC&hl=&printsec=frontcover&output=reader&source=gbs_api",
231
+ "accessViewStatus": "SAMPLE",
232
+ "quoteSharingAllowed": false
233
+ },
234
+ "searchInfo": {
235
+ "textSnippet": "A revised edition of a best-selling reference incorporates the latest recommendations for recovering from cancer, from foods to eat or avoid and mind-body stress reduction practices to strategic lifestyle modifications and immune system ..."
236
+ }
237
+ },
238
+ {
239
+ "kind": "books#volume",
240
+ "id": "MzMmAgAAQBAJ",
241
+ "etag": "7pvUsXBge1g",
242
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/MzMmAgAAQBAJ",
243
+ "volumeInfo": {
244
+ "title": "The Biology of Cancer, Second Edition",
245
+ "authors": [
246
+ "Robert Weinberg"
247
+ ],
248
+ "publisher": "Garland Science",
249
+ "publishedDate": "2013-05-14",
250
+ "description": "Thoroughly updated and incorporating the most important advances in the fast-growing field of cancer biology, The Biology of Cancer, Second Edition, maintains all of its hallmark features admired by students, instructors, researchers, and clinicians around the world. The Biology of Cancer is a textbook for students studying the molecular and cellular bases of cancer at the undergraduate, graduate, and medical school levels. The principles of cancer biology are presented in an organized, cogent, and in-depth manner. The clarity of writing, supported by an extensive full-color art program and numerous pedagogical features, makes the book accessible and engaging. The information unfolds through the presentation of key experiments that give readers a sense of discovery and provide insights into the conceptual foundation underlying modern cancer biology.",
251
+ "industryIdentifiers": [
252
+ {
253
+ "type": "ISBN_13",
254
+ "identifier": "9781317963462"
255
+ },
256
+ {
257
+ "type": "ISBN_10",
258
+ "identifier": "1317963466"
259
+ }
260
+ ],
261
+ "readingModes": {
262
+ "text": false,
263
+ "image": true
264
+ },
265
+ "pageCount": 960,
266
+ "printType": "BOOK",
267
+ "categories": [
268
+ "Science"
269
+ ],
270
+ "averageRating": 4.5,
271
+ "ratingsCount": 7,
272
+ "maturityRating": "NOT_MATURE",
273
+ "allowAnonLogging": false,
274
+ "contentVersion": "preview-1.0.0",
275
+ "imageLinks": {
276
+ "smallThumbnail": "http://books.google.com/books/content?id=MzMmAgAAQBAJ&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
277
+ "thumbnail": "http://books.google.com/books/content?id=MzMmAgAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
278
+ },
279
+ "language": "en",
280
+ "previewLink": "http://books.google.com/books?id=MzMmAgAAQBAJ&printsec=frontcover&dq=cancer&hl=&cd=3&source=gbs_api",
281
+ "infoLink": "http://books.google.com/books?id=MzMmAgAAQBAJ&dq=cancer&hl=&source=gbs_api",
282
+ "canonicalVolumeLink": "http://books.google.com/books/about/The_Biology_of_Cancer_Second_Edition.html?hl=&id=MzMmAgAAQBAJ"
283
+ },
284
+ "saleInfo": {
285
+ "country": "US",
286
+ "saleability": "FOR_SALE",
287
+ "isEbook": true,
288
+ "listPrice": {
289
+ "amount": 155.0,
290
+ "currencyCode": "USD"
291
+ },
292
+ "retailPrice": {
293
+ "amount": 124.0,
294
+ "currencyCode": "USD"
295
+ },
296
+ "buyLink": "http://books.google.com/books?id=MzMmAgAAQBAJ&dq=cancer&hl=&buy=&source=gbs_api",
297
+ "offers": [
298
+ {
299
+ "finskyOfferType": 1,
300
+ "listPrice": {
301
+ "amountInMicros": 1.55E8,
302
+ "currencyCode": "USD"
303
+ },
304
+ "retailPrice": {
305
+ "amountInMicros": 1.24E8,
306
+ "currencyCode": "USD"
307
+ }
308
+ }
309
+ ]
310
+ },
311
+ "accessInfo": {
312
+ "country": "US",
313
+ "viewability": "PARTIAL",
314
+ "embeddable": true,
315
+ "publicDomain": false,
316
+ "textToSpeechPermission": "ALLOWED",
317
+ "epub": {
318
+ "isAvailable": false
319
+ },
320
+ "pdf": {
321
+ "isAvailable": true,
322
+ "acsTokenLink": "http://books.google.com/books/download/The_Biology_of_Cancer_Second_Edition-sample-pdf.acsm?id=MzMmAgAAQBAJ&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
323
+ },
324
+ "webReaderLink": "http://books.google.com/books/reader?id=MzMmAgAAQBAJ&hl=&printsec=frontcover&output=reader&source=gbs_api",
325
+ "accessViewStatus": "SAMPLE",
326
+ "quoteSharingAllowed": false
327
+ },
328
+ "searchInfo": {
329
+ "textSnippet": "The principles of cancer biology are presented in an organized, cogent, and in-depth manner. The clarity of writing, supported by an extensive full-color art program and numerous pedagogical features, makes the book accessible and engaging."
330
+ }
331
+ },
332
+ {
333
+ "kind": "books#volume",
334
+ "id": "NIaiHLcr0n8C",
335
+ "etag": "/s8ehM1HC08",
336
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/NIaiHLcr0n8C",
337
+ "volumeInfo": {
338
+ "title": "Cancer",
339
+ "authors": [
340
+ "Joanna Martine Woolfolk"
341
+ ],
342
+ "publisher": "Taylor Trade Publications",
343
+ "publishedDate": "2011",
344
+ "description": "Each of these elegant little volumes is packed with everything you'd want to know about your Sun Sign from such basics as your ruling planet, symbol, constellation, lucky numbers and birthstone, to keywords and illuminating quotes from the rich and famous who share your sign. Naturally, romance comes into play with suggested amorous combinations for each sign and even an exploration of each sign's distinctive erogenous zones for the benefit of a would-be lover.",
345
+ "industryIdentifiers": [
346
+ {
347
+ "type": "ISBN_13",
348
+ "identifier": "9781589795563"
349
+ },
350
+ {
351
+ "type": "ISBN_10",
352
+ "identifier": "1589795563"
353
+ }
354
+ ],
355
+ "readingModes": {
356
+ "text": false,
357
+ "image": true
358
+ },
359
+ "pageCount": 96,
360
+ "printType": "BOOK",
361
+ "categories": [
362
+ "Body, Mind & Spirit"
363
+ ],
364
+ "averageRating": 3.5,
365
+ "ratingsCount": 2,
366
+ "maturityRating": "NOT_MATURE",
367
+ "allowAnonLogging": false,
368
+ "contentVersion": "preview-1.0.0",
369
+ "imageLinks": {
370
+ "smallThumbnail": "http://books.google.com/books/content?id=NIaiHLcr0n8C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
371
+ "thumbnail": "http://books.google.com/books/content?id=NIaiHLcr0n8C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
372
+ },
373
+ "language": "en",
374
+ "previewLink": "http://books.google.com/books?id=NIaiHLcr0n8C&printsec=frontcover&dq=cancer&hl=&cd=4&source=gbs_api",
375
+ "infoLink": "http://books.google.com/books?id=NIaiHLcr0n8C&dq=cancer&hl=&source=gbs_api",
376
+ "canonicalVolumeLink": "http://books.google.com/books/about/Cancer.html?hl=&id=NIaiHLcr0n8C"
377
+ },
378
+ "saleInfo": {
379
+ "country": "US",
380
+ "saleability": "NOT_FOR_SALE",
381
+ "isEbook": false
382
+ },
383
+ "accessInfo": {
384
+ "country": "US",
385
+ "viewability": "PARTIAL",
386
+ "embeddable": true,
387
+ "publicDomain": false,
388
+ "textToSpeechPermission": "ALLOWED",
389
+ "epub": {
390
+ "isAvailable": false
391
+ },
392
+ "pdf": {
393
+ "isAvailable": true,
394
+ "acsTokenLink": "http://books.google.com/books/download/Cancer-sample-pdf.acsm?id=NIaiHLcr0n8C&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
395
+ },
396
+ "webReaderLink": "http://books.google.com/books/reader?id=NIaiHLcr0n8C&hl=&printsec=frontcover&output=reader&source=gbs_api",
397
+ "accessViewStatus": "SAMPLE",
398
+ "quoteSharingAllowed": false
399
+ },
400
+ "searchInfo": {
401
+ "textSnippet": "Each of these elegant little volumes is packed with everything you&#39;d want to know about your Sun Sign from such basics as your ruling planet, symbol, constellation, lucky numbers and birthstone, to keywords and illuminating quotes from the ..."
402
+ }
403
+ },
404
+ {
405
+ "kind": "books#volume",
406
+ "id": "8Rlxz7ETndcC",
407
+ "etag": "T2HhbBWwAAo",
408
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/8Rlxz7ETndcC",
409
+ "volumeInfo": {
410
+ "title": "Breast Cancer Q & A",
411
+ "subtitle": "Insightful Answers to the 100 Most Frequently Asked Questions",
412
+ "authors": [
413
+ "Charyn Pfeuffer"
414
+ ],
415
+ "publisher": "Penguin",
416
+ "publishedDate": "2003",
417
+ "description": "Provides information on breast cancer, covering such topics as medical terminology, support groups, medication, and alternative treatments.",
418
+ "industryIdentifiers": [
419
+ {
420
+ "type": "ISBN_10",
421
+ "identifier": "158333145X"
422
+ },
423
+ {
424
+ "type": "ISBN_13",
425
+ "identifier": "9781583331453"
426
+ }
427
+ ],
428
+ "readingModes": {
429
+ "text": false,
430
+ "image": false
431
+ },
432
+ "pageCount": 326,
433
+ "printType": "BOOK",
434
+ "categories": [
435
+ "Health & Fitness"
436
+ ],
437
+ "maturityRating": "NOT_MATURE",
438
+ "allowAnonLogging": false,
439
+ "contentVersion": "preview-1.0.0",
440
+ "imageLinks": {
441
+ "smallThumbnail": "http://books.google.com/books/content?id=8Rlxz7ETndcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
442
+ "thumbnail": "http://books.google.com/books/content?id=8Rlxz7ETndcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
443
+ },
444
+ "language": "en",
445
+ "previewLink": "http://books.google.com/books?id=8Rlxz7ETndcC&printsec=frontcover&dq=cancer&hl=&cd=5&source=gbs_api",
446
+ "infoLink": "http://books.google.com/books?id=8Rlxz7ETndcC&dq=cancer&hl=&source=gbs_api",
447
+ "canonicalVolumeLink": "http://books.google.com/books/about/Breast_Cancer_Q_A.html?hl=&id=8Rlxz7ETndcC"
448
+ },
449
+ "saleInfo": {
450
+ "country": "US",
451
+ "saleability": "NOT_FOR_SALE",
452
+ "isEbook": false
453
+ },
454
+ "accessInfo": {
455
+ "country": "US",
456
+ "viewability": "PARTIAL",
457
+ "embeddable": true,
458
+ "publicDomain": false,
459
+ "textToSpeechPermission": "ALLOWED_FOR_ACCESSIBILITY",
460
+ "epub": {
461
+ "isAvailable": false
462
+ },
463
+ "pdf": {
464
+ "isAvailable": false
465
+ },
466
+ "webReaderLink": "http://books.google.com/books/reader?id=8Rlxz7ETndcC&hl=&printsec=frontcover&output=reader&source=gbs_api",
467
+ "accessViewStatus": "SAMPLE",
468
+ "quoteSharingAllowed": false
469
+ },
470
+ "searchInfo": {
471
+ "textSnippet": "Provides information on breast cancer, covering such topics as medical terminology, support groups, medication, and alternative treatments."
472
+ }
473
+ },
474
+ {
475
+ "kind": "books#volume",
476
+ "id": "GisSelWBVtoC",
477
+ "etag": "jsiL7yp2oGo",
478
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/GisSelWBVtoC",
479
+ "volumeInfo": {
480
+ "title": "Fatigue in Cancer",
481
+ "subtitle": "A Multidimensional Approach",
482
+ "authors": [
483
+ "Maryl Lynne Winningham",
484
+ "Margaret Barton-Burke"
485
+ ],
486
+ "publisher": "Jones & Bartlett Learning",
487
+ "publishedDate": "2000",
488
+ "description": "This book takes an extraordinary approach to an evasive topic. it winds its way through a universe of fatigue-related topics, including theory, research, historical roots, contemporary thoughts, self-reports, survivor stories, poetic interpretations, and pencil sketch illustrations. it is a composite of ideas from many sources and many disciplines. the clinician is left with a new understanding of fatigue that will impact his or her practice forever.",
489
+ "industryIdentifiers": [
490
+ {
491
+ "type": "ISBN_10",
492
+ "identifier": "0763706302"
493
+ },
494
+ {
495
+ "type": "ISBN_13",
496
+ "identifier": "9780763706302"
497
+ }
498
+ ],
499
+ "readingModes": {
500
+ "text": false,
501
+ "image": true
502
+ },
503
+ "pageCount": 445,
504
+ "printType": "BOOK",
505
+ "categories": [
506
+ "Medical"
507
+ ],
508
+ "maturityRating": "NOT_MATURE",
509
+ "allowAnonLogging": false,
510
+ "contentVersion": "0.1.0.0.preview.1",
511
+ "imageLinks": {
512
+ "smallThumbnail": "http://books.google.com/books/content?id=GisSelWBVtoC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
513
+ "thumbnail": "http://books.google.com/books/content?id=GisSelWBVtoC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
514
+ },
515
+ "language": "en",
516
+ "previewLink": "http://books.google.com/books?id=GisSelWBVtoC&printsec=frontcover&dq=cancer&hl=&cd=6&source=gbs_api",
517
+ "infoLink": "http://books.google.com/books?id=GisSelWBVtoC&dq=cancer&hl=&source=gbs_api",
518
+ "canonicalVolumeLink": "http://books.google.com/books/about/Fatigue_in_Cancer.html?hl=&id=GisSelWBVtoC"
519
+ },
520
+ "saleInfo": {
521
+ "country": "US",
522
+ "saleability": "NOT_FOR_SALE",
523
+ "isEbook": false
524
+ },
525
+ "accessInfo": {
526
+ "country": "US",
527
+ "viewability": "PARTIAL",
528
+ "embeddable": true,
529
+ "publicDomain": false,
530
+ "textToSpeechPermission": "ALLOWED",
531
+ "epub": {
532
+ "isAvailable": false
533
+ },
534
+ "pdf": {
535
+ "isAvailable": false
536
+ },
537
+ "webReaderLink": "http://books.google.com/books/reader?id=GisSelWBVtoC&hl=&printsec=frontcover&output=reader&source=gbs_api",
538
+ "accessViewStatus": "SAMPLE",
539
+ "quoteSharingAllowed": false
540
+ },
541
+ "searchInfo": {
542
+ "textSnippet": "This book takes an extraordinary approach to an evasive topic. it winds its way through a universe of fatigue-related topics, including theory, research, historical roots, contemporary thoughts, self-reports, survivor stories, poetic ..."
543
+ }
544
+ },
545
+ {
546
+ "kind": "books#volume",
547
+ "id": "LteAUrJQyfEC",
548
+ "etag": "C4MvG7z+FiY",
549
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/LteAUrJQyfEC",
550
+ "volumeInfo": {
551
+ "title": "Cancer",
552
+ "authors": [
553
+ "Susan Pories",
554
+ "Marsha A. Moses",
555
+ "Margaret M. Lotz"
556
+ ],
557
+ "publisher": "ABC-CLIO",
558
+ "publishedDate": "2009",
559
+ "description": "Cancer is a diagnosis that causes fear and confusion. It is really a family of diseases, and the process, causes, and prognosis can vary widely. Get an overview of the history of cancer as well as seminal figures and discoveries on the path to today's understanding of cancer.",
560
+ "industryIdentifiers": [
561
+ {
562
+ "type": "ISBN_13",
563
+ "identifier": "9780313359798"
564
+ },
565
+ {
566
+ "type": "ISBN_10",
567
+ "identifier": "0313359792"
568
+ }
569
+ ],
570
+ "readingModes": {
571
+ "text": true,
572
+ "image": true
573
+ },
574
+ "pageCount": 174,
575
+ "printType": "BOOK",
576
+ "categories": [
577
+ "Health & Fitness"
578
+ ],
579
+ "maturityRating": "NOT_MATURE",
580
+ "allowAnonLogging": false,
581
+ "contentVersion": "0.0.2.0.preview.3",
582
+ "imageLinks": {
583
+ "smallThumbnail": "http://books.google.com/books/content?id=LteAUrJQyfEC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
584
+ "thumbnail": "http://books.google.com/books/content?id=LteAUrJQyfEC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
585
+ },
586
+ "language": "en",
587
+ "previewLink": "http://books.google.com/books?id=LteAUrJQyfEC&printsec=frontcover&dq=cancer&hl=&cd=7&source=gbs_api",
588
+ "infoLink": "http://books.google.com/books?id=LteAUrJQyfEC&dq=cancer&hl=&source=gbs_api",
589
+ "canonicalVolumeLink": "http://books.google.com/books/about/Cancer.html?hl=&id=LteAUrJQyfEC"
590
+ },
591
+ "saleInfo": {
592
+ "country": "US",
593
+ "saleability": "FOR_SALE",
594
+ "isEbook": true,
595
+ "listPrice": {
596
+ "amount": 45.0,
597
+ "currencyCode": "USD"
598
+ },
599
+ "retailPrice": {
600
+ "amount": 36.0,
601
+ "currencyCode": "USD"
602
+ },
603
+ "buyLink": "http://books.google.com/books?id=LteAUrJQyfEC&dq=cancer&hl=&buy=&source=gbs_api",
604
+ "offers": [
605
+ {
606
+ "finskyOfferType": 1,
607
+ "listPrice": {
608
+ "amountInMicros": 4.5E7,
609
+ "currencyCode": "USD"
610
+ },
611
+ "retailPrice": {
612
+ "amountInMicros": 3.6E7,
613
+ "currencyCode": "USD"
614
+ }
615
+ }
616
+ ]
617
+ },
618
+ "accessInfo": {
619
+ "country": "US",
620
+ "viewability": "PARTIAL",
621
+ "embeddable": true,
622
+ "publicDomain": false,
623
+ "textToSpeechPermission": "ALLOWED",
624
+ "epub": {
625
+ "isAvailable": true,
626
+ "acsTokenLink": "http://books.google.com/books/download/Cancer-sample-epub.acsm?id=LteAUrJQyfEC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
627
+ },
628
+ "pdf": {
629
+ "isAvailable": true,
630
+ "acsTokenLink": "http://books.google.com/books/download/Cancer-sample-pdf.acsm?id=LteAUrJQyfEC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
631
+ },
632
+ "webReaderLink": "http://books.google.com/books/reader?id=LteAUrJQyfEC&hl=&printsec=frontcover&output=reader&source=gbs_api",
633
+ "accessViewStatus": "SAMPLE",
634
+ "quoteSharingAllowed": false
635
+ },
636
+ "searchInfo": {
637
+ "textSnippet": "Cancer is a diagnosis that causes fear and confusion."
638
+ }
639
+ },
640
+ {
641
+ "kind": "books#volume",
642
+ "id": "5ziWNCqD7OEC",
643
+ "etag": "f1ifq4eL4JA",
644
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/5ziWNCqD7OEC",
645
+ "volumeInfo": {
646
+ "title": "Cancer",
647
+ "subtitle": "The Evolutionary Legacy",
648
+ "authors": [
649
+ "Mel Greaves"
650
+ ],
651
+ "publisher": "Oxford University Press on Demand",
652
+ "publishedDate": "2001",
653
+ "description": "In this lucid and entertaining book, Mel Greaves argues that evolutionary biology offers a new perspective that can help us unravel the riddle of cancer. Why, for example, have women always had such a raw deal in the cancer stakes? And why are some cancers, such as prostate cancer, increasing in incidence? Greaves argues that Darwinian selection millions of years ago has endowed our genes and cells with inherently cancerous credentials, and this is exacerbated by our rapid social evolution and exotic behavioural traits that outpace genetic adaptation. The book is full of novel insights, the latest scientific discoveries, and wonderful historical anecdotes. It provides a unique portrait of cancer, past, present, and future.",
654
+ "industryIdentifiers": [
655
+ {
656
+ "type": "ISBN_10",
657
+ "identifier": "0192628348"
658
+ },
659
+ {
660
+ "type": "ISBN_13",
661
+ "identifier": "9780192628343"
662
+ }
663
+ ],
664
+ "readingModes": {
665
+ "text": false,
666
+ "image": true
667
+ },
668
+ "pageCount": 276,
669
+ "printType": "BOOK",
670
+ "categories": [
671
+ "Medical"
672
+ ],
673
+ "maturityRating": "NOT_MATURE",
674
+ "allowAnonLogging": false,
675
+ "contentVersion": "preview-1.0.0",
676
+ "imageLinks": {
677
+ "smallThumbnail": "http://books.google.com/books/content?id=5ziWNCqD7OEC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
678
+ "thumbnail": "http://books.google.com/books/content?id=5ziWNCqD7OEC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
679
+ },
680
+ "language": "en",
681
+ "previewLink": "http://books.google.com/books?id=5ziWNCqD7OEC&printsec=frontcover&dq=cancer&hl=&cd=8&source=gbs_api",
682
+ "infoLink": "http://books.google.com/books?id=5ziWNCqD7OEC&dq=cancer&hl=&source=gbs_api",
683
+ "canonicalVolumeLink": "http://books.google.com/books/about/Cancer.html?hl=&id=5ziWNCqD7OEC"
684
+ },
685
+ "saleInfo": {
686
+ "country": "US",
687
+ "saleability": "NOT_FOR_SALE",
688
+ "isEbook": false
689
+ },
690
+ "accessInfo": {
691
+ "country": "US",
692
+ "viewability": "PARTIAL",
693
+ "embeddable": true,
694
+ "publicDomain": false,
695
+ "textToSpeechPermission": "ALLOWED",
696
+ "epub": {
697
+ "isAvailable": false
698
+ },
699
+ "pdf": {
700
+ "isAvailable": false
701
+ },
702
+ "webReaderLink": "http://books.google.com/books/reader?id=5ziWNCqD7OEC&hl=&printsec=frontcover&output=reader&source=gbs_api",
703
+ "accessViewStatus": "SAMPLE",
704
+ "quoteSharingAllowed": false
705
+ },
706
+ "searchInfo": {
707
+ "textSnippet": "Greaves argues that Darwinian selection millions of years ago has endowed our genes and cells with inherently cancerous credentials, and this is exacerbated by our rapid social evolution and exotic behavioural traits that outpace genetic ..."
708
+ }
709
+ },
710
+ {
711
+ "kind": "books#volume",
712
+ "id": "nFoz31cKpFgC",
713
+ "etag": "D814JdvJ+4w",
714
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/nFoz31cKpFgC",
715
+ "volumeInfo": {
716
+ "title": "Cancer",
717
+ "subtitle": "My Story",
718
+ "authors": [
719
+ "Daniel Feist",
720
+ "Stan Shatenstein"
721
+ ],
722
+ "publisher": "CanWest Books",
723
+ "publishedDate": "2006",
724
+ "industryIdentifiers": [
725
+ {
726
+ "type": "ISBN_10",
727
+ "identifier": "1897229089"
728
+ },
729
+ {
730
+ "type": "ISBN_13",
731
+ "identifier": "9781897229088"
732
+ }
733
+ ],
734
+ "readingModes": {
735
+ "text": false,
736
+ "image": true
737
+ },
738
+ "pageCount": 125,
739
+ "printType": "BOOK",
740
+ "categories": [
741
+ "Cancer"
742
+ ],
743
+ "maturityRating": "NOT_MATURE",
744
+ "allowAnonLogging": false,
745
+ "contentVersion": "preview-1.0.0",
746
+ "imageLinks": {
747
+ "smallThumbnail": "http://books.google.com/books/content?id=nFoz31cKpFgC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
748
+ "thumbnail": "http://books.google.com/books/content?id=nFoz31cKpFgC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
749
+ },
750
+ "language": "en",
751
+ "previewLink": "http://books.google.com/books?id=nFoz31cKpFgC&printsec=frontcover&dq=cancer&hl=&cd=9&source=gbs_api",
752
+ "infoLink": "http://books.google.com/books?id=nFoz31cKpFgC&dq=cancer&hl=&source=gbs_api",
753
+ "canonicalVolumeLink": "http://books.google.com/books/about/Cancer.html?hl=&id=nFoz31cKpFgC"
754
+ },
755
+ "saleInfo": {
756
+ "country": "US",
757
+ "saleability": "NOT_FOR_SALE",
758
+ "isEbook": false
759
+ },
760
+ "accessInfo": {
761
+ "country": "US",
762
+ "viewability": "PARTIAL",
763
+ "embeddable": true,
764
+ "publicDomain": false,
765
+ "textToSpeechPermission": "ALLOWED",
766
+ "epub": {
767
+ "isAvailable": false
768
+ },
769
+ "pdf": {
770
+ "isAvailable": false
771
+ },
772
+ "webReaderLink": "http://books.google.com/books/reader?id=nFoz31cKpFgC&hl=&printsec=frontcover&output=reader&source=gbs_api",
773
+ "accessViewStatus": "SAMPLE",
774
+ "quoteSharingAllowed": false
775
+ }
776
+ },
777
+ {
778
+ "kind": "books#volume",
779
+ "id": "Av6R41nQhboC",
780
+ "etag": "egVJlcCH1cI",
781
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/Av6R41nQhboC",
782
+ "volumeInfo": {
783
+ "title": "Cancer",
784
+ "subtitle": "50 Essential Things to Do",
785
+ "authors": [
786
+ "Greg Anderson"
787
+ ],
788
+ "publisher": "Penguin",
789
+ "publishedDate": "2009",
790
+ "description": "Written by a cancer survivor, this invaluable guide to cancer recovery offers an easily accessible holistic action plan for patients and family members who choose to adopt a stance of hope and take charge of their diagnosis. Reprint.",
791
+ "industryIdentifiers": [
792
+ {
793
+ "type": "ISBN_10",
794
+ "identifier": "0452290104"
795
+ },
796
+ {
797
+ "type": "ISBN_13",
798
+ "identifier": "9780452290105"
799
+ }
800
+ ],
801
+ "readingModes": {
802
+ "text": false,
803
+ "image": false
804
+ },
805
+ "pageCount": 198,
806
+ "printType": "BOOK",
807
+ "categories": [
808
+ "Health & Fitness"
809
+ ],
810
+ "averageRating": 3.5,
811
+ "ratingsCount": 7,
812
+ "maturityRating": "NOT_MATURE",
813
+ "allowAnonLogging": false,
814
+ "contentVersion": "0.0.2.0.preview.0",
815
+ "imageLinks": {
816
+ "smallThumbnail": "http://books.google.com/books/content?id=Av6R41nQhboC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
817
+ "thumbnail": "http://books.google.com/books/content?id=Av6R41nQhboC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
818
+ },
819
+ "language": "en",
820
+ "previewLink": "http://books.google.com/books?id=Av6R41nQhboC&printsec=frontcover&dq=cancer&hl=&cd=10&source=gbs_api",
821
+ "infoLink": "http://books.google.com/books?id=Av6R41nQhboC&dq=cancer&hl=&source=gbs_api",
822
+ "canonicalVolumeLink": "http://books.google.com/books/about/Cancer.html?hl=&id=Av6R41nQhboC"
823
+ },
824
+ "saleInfo": {
825
+ "country": "US",
826
+ "saleability": "NOT_FOR_SALE",
827
+ "isEbook": false
828
+ },
829
+ "accessInfo": {
830
+ "country": "US",
831
+ "viewability": "PARTIAL",
832
+ "embeddable": true,
833
+ "publicDomain": false,
834
+ "textToSpeechPermission": "ALLOWED_FOR_ACCESSIBILITY",
835
+ "epub": {
836
+ "isAvailable": false
837
+ },
838
+ "pdf": {
839
+ "isAvailable": false
840
+ },
841
+ "webReaderLink": "http://books.google.com/books/reader?id=Av6R41nQhboC&hl=&printsec=frontcover&output=reader&source=gbs_api",
842
+ "accessViewStatus": "SAMPLE",
843
+ "quoteSharingAllowed": false
844
+ },
845
+ "searchInfo": {
846
+ "textSnippet": "Written by a cancer survivor, this invaluable guide to cancer recovery offers an easily accessible holistic action plan for patients and family members who choose to adopt a stance of hope and take charge of their diagnosis. Reprint."
847
+ }
848
+ }
849
+ ]
850
+ }
334
851
  http_version:
335
- recorded_at: Thu, 03 Jan 2013 00:21:28 GMT
852
+ recorded_at: Mon, 21 Sep 2015 14:28:04 GMT
336
853
  - request:
337
854
  method: get
338
- uri: https://www.googleapis.com/books/v1/volumes/aVTMqaclr_kC
855
+ uri: https://www.googleapis.com/books/v1/volumes/-TAxAAAAQBAJ
339
856
  body:
340
- encoding: US-ASCII
857
+ encoding: UTF-8
341
858
  string: ''
342
859
  headers: {}
343
860
  response:
344
861
  status:
345
862
  code: 200
346
- message: !binary |-
347
- T0s=
863
+ message: OK
348
864
  headers:
349
- !binary "RXhwaXJlcw==":
350
- - !binary |-
351
- VGh1LCAwMyBKYW4gMjAxMyAwMDoyMToyOSBHTVQ=
352
- !binary "RGF0ZQ==":
353
- - !binary |-
354
- VGh1LCAwMyBKYW4gMjAxMyAwMDoyMToyOSBHTVQ=
355
- !binary "Q2FjaGUtQ29udHJvbA==":
356
- - !binary |-
357
- cHJpdmF0ZSwgbWF4LWFnZT0wLCBtdXN0LXJldmFsaWRhdGUsIG5vLXRyYW5z
358
- Zm9ybQ==
359
- !binary "RXRhZw==":
360
- - !binary |-
361
- InFVbUh6NDZ6RzFGeVRTSmxqcEhmTjhISnZCNC9LR01QMWJOZFZxLWY3WDZC
362
- MVdxVU9xTFVVSnMi
363
- !binary "Q29udGVudC1UeXBl":
364
- - !binary |-
365
- YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD1VVEYtOA==
366
- !binary "WC1Db250ZW50LVR5cGUtT3B0aW9ucw==":
367
- - !binary |-
368
- bm9zbmlmZg==
369
- !binary "WC1GcmFtZS1PcHRpb25z":
370
- - !binary |-
371
- U0FNRU9SSUdJTg==
372
- !binary "WC1Yc3MtUHJvdGVjdGlvbg==":
373
- - !binary |-
374
- MTsgbW9kZT1ibG9jaw==
375
- !binary "U2VydmVy":
376
- - !binary |-
377
- R1NF
378
- !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
379
- - !binary |-
380
- Y2h1bmtlZA==
865
+ Expires:
866
+ - Mon, 21 Sep 2015 14:28:04 GMT
867
+ Date:
868
+ - Mon, 21 Sep 2015 14:28:04 GMT
869
+ Cache-Control:
870
+ - private, max-age=0, must-revalidate, no-transform
871
+ Etag:
872
+ - '"AEqHJ39cYOcHij976IZqD9LCWzE/Jt2OBK3nxJZMLOmX6FYFwwJT32E"'
873
+ Vary:
874
+ - Origin
875
+ - X-Origin
876
+ Content-Type:
877
+ - application/json; charset=UTF-8
878
+ X-Content-Type-Options:
879
+ - nosniff
880
+ X-Frame-Options:
881
+ - SAMEORIGIN
882
+ X-Xss-Protection:
883
+ - 1; mode=block
884
+ Content-Length:
885
+ - '7283'
886
+ Server:
887
+ - GSE
888
+ Alternate-Protocol:
889
+ - 443:quic,p=1
890
+ Alt-Svc:
891
+ - quic=":443"; p="1"; ma=604800
381
892
  body:
382
- encoding: US-ASCII
383
- string: ! "{\n \"kind\": \"books#volume\",\n \"id\": \"aVTMqaclr_kC\",\n \"etag\":
384
- \"0uXJYR4gymw\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/aVTMqaclr_kC\",\n
385
- \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Alvin
386
- Silverstein\",\n \"Virginia B. Silverstein\",\n \"Laura Silverstein Nunn\"\n
387
- \ ],\n \"publisher\": \"Twenty-First Century Books\",\n \"publishedDate\":
388
- \"2006\",\n \"description\": \"Explains different types of cancer, their
389
- causes, symptoms and treatment, and, through case studies, what it is like
390
- to live with cancer.\",\n \"industryIdentifiers\": [\n {\n \"type\":
391
- \"ISBN_10\",\n \"identifier\": \"0761328335\"\n },\n {\n \"type\":
392
- \"ISBN_13\",\n \"identifier\": \"9780761328339\"\n }\n ],\n \"pageCount\":
393
- 121,\n \"dimensions\": {\n \"height\": \"24.00 cm\",\n \"width\": \"16.41
394
- cm\",\n \"thickness\": \"1.35 cm\"\n },\n \"printType\": \"BOOK\",\n \"categories\":
395
- [\n \"Juvenile Nonfiction / General\",\n \"Juvenile Nonfiction / Health
396
- & Daily Living / Diseases, Illnesses & Injuries\",\n \"Medical / Oncology\"\n
397
- \ ],\n \"contentVersion\": \"0.1.0.0.preview.0\",\n \"imageLinks\": {\n
398
- \ \"smallThumbnail\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=5&edge=curl&imgtk=AFLRE71igvCnCBWjjExqWNOM7miK_saps_p5pUBAbhmr-NjYsu_XbIXe9Hpz_8Bqa_a7mqJUXHT4gWkPTvNfHB6x0ABzy5ZtQ4bzqvIF000G4oc4DhVXQrA&source=gbs_api\",\n
399
- \ \"thumbnail\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=1&edge=curl&imgtk=AFLRE72lW0lpni9_Gnea-T6uYqy5LDdaixHof8hFxITpoQc0Rj5U8LKJlwT4yBPiy9VPL6FlV4FL8VxFvfvOyEHTNk1jBP--eoLNAUmExzmDeSXIqtAW-Sk&source=gbs_api\",\n
400
- \ \"small\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=2&edge=curl&imgtk=AFLRE70qpuJvWVCeMWVDw90V5Zb_WEF_DsEi79vbpOUTIaPf9b1pnxCc9eNIPLFxZLVIW8k1CYr_zG56jdM5vxg9l4cImNAX-kpdQynY8Ql7U9IO3BAg1fA&source=gbs_api\",\n
401
- \ \"medium\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=3&edge=curl&imgtk=AFLRE70uZ_RoJ8PZDpC5IjyL1IJTLOqM4NgMB3Dk1NQciR8FzKT4TEEMDr2KGyMx8HfugTHTHM7mKi15rYdxAB22FZj_AEyGmGJwa3xPUyq8Q-jzq79It8k&source=gbs_api\",\n
402
- \ \"large\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=4&edge=curl&imgtk=AFLRE71yIskM8SzZ5souq-7z7vzo_NFnjFWWWWLU9TVgnMVBwsCFfwqNSknS6eS8XKhkcj3FzXiVST_NORv6cBb5C0TYHlk7qIJpozMB-PPF1HRRWEV71mA&source=gbs_api\",\n
403
- \ \"extraLarge\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=6&edge=curl&imgtk=AFLRE71qMR_EshJYvOS3iz0NZlFtT5uwUf7FM05B93kPlTaMO88URbX14LBWgH_l1dfUOoWeYnCyND7iIMqixHSsW_zw5RqGBSHVZNGF6-WL_C5ENrOx0ac&source=gbs_api\"\n
404
- \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=aVTMqaclr_kC&hl=&source=gbs_api\",\n
405
- \ \"infoLink\": \"http://books.google.com/books?id=aVTMqaclr_kC&hl=&source=gbs_api\",\n
406
- \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=aVTMqaclr_kC\"\n
407
- },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\": \"NOT_FOR_SALE\",\n
408
- \ \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
409
- \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
410
- \"ALLOWED\",\n \"epub\": {\n \"isAvailable\": false\n },\n \"pdf\": {\n
411
- \ \"isAvailable\": false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=aVTMqaclr_kC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
412
- \ \"accessViewStatus\": \"SAMPLE\"\n }\n}\n"
893
+ encoding: UTF-8
894
+ string: |
895
+ {
896
+ "kind": "books#volume",
897
+ "id": "-TAxAAAAQBAJ",
898
+ "etag": "T0SJ48C/wGM",
899
+ "selfLink": "https://www.googleapis.com/books/v1/volumes/-TAxAAAAQBAJ",
900
+ "volumeInfo": {
901
+ "title": "The Mayo Clinic Breast Cancer Book",
902
+ "authors": [
903
+ "Mayo Clinic"
904
+ ],
905
+ "publisher": "RosettaBooks",
906
+ "publishedDate": "2012-11-16",
907
+ "description": "\u003cp\u003eFrom the breast health experts at Mayo Clinic comes a guide to the many aspects of breast cancer—from prevention, to care and coping, to survival, to living with hope. Trustworthy information offered in a spirit of companionship.\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003e“This is the best source for readable, up-to-date information—from the world’s experts.” —Dr. Thomas J. Smith, Johns Hopkins Hospital\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003e“If you’re looking for a comprehensive, easy-to-read book about an often confusing topic, \u003ci\u003eThe Mayo Clinic Breast Cancer Book\u003c/i\u003e is for you.” —Henry M. Kuerer, M.D., Ph.D., FACS, Professor and Director, Breast Surgical Oncology Training Program, MD Anderson Cancer Center\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003e“Readers will likely return again and again to this book as a convenient source of knowledge, insight, and reassurance as they confront the many decisions required in the treatment of breast cancer.” —Clifford A. Hudis, M.D., Chief, Breast Cancer Medicine Service, Memorial Sloan-Kettering Cancer Center\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003eMayo Clinic Cancer Center is dedicated to understanding and discovering new ways to predict, prevent, diagnose and treat cancer, transforming the quality of life for cancer patients today and into the future. With a multisite national presence, its three campuses—in Pheonix/Scottsdale, Ariz.; Jacksonville, Fla.; and Rochester, Minn.—offer a broad geographic reach to serve patients. Designated as a Comprehensive Cancer Center by the National Cancer Institute, Mayo Clinic Cancer Center is a leader in translating discoveries into effective improvements in patient care.\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003eABOUT THE AUTHOR\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003eMayo Clinic took root in farm fields near Rochester, Minn., in the late 1800s. It grew from the medical practice of a country doctor, William Worrall Mayo, and the partnership of his two sons, William J. and Charles H. Mayo—affectionately known as Dr. Will and Dr. Charlie.\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003eThe brothers' innovative ideas and tireless work in learning and creating new surgical techniques attracted international attention. Physicians from around the world came to watch the Mayo brothers perform surgery.\u003c/p\u003e \u003cp\u003e\u003c/p\u003e \u003cp\u003eThe Mayo brothers invited other doctors to join them, forming teams of medical experts. Today, Mayo Clinic—one of the world’s oldest and largest multispecialty group practices—comprises more than 45,000 physicians, scientists, nurses and other staff at its three locations in Rochester, Minn., Jacksonville, Fla., and Scottsdale, Ariz., and its regional community-based health care practices.\u003c/p\u003e",
908
+ "industryIdentifiers": [
909
+ {
910
+ "type": "ISBN_10",
911
+ "identifier": "0795331894"
912
+ },
913
+ {
914
+ "type": "ISBN_13",
915
+ "identifier": "9780795331893"
916
+ }
917
+ ],
918
+ "readingModes": {
919
+ "text": true,
920
+ "image": true
921
+ },
922
+ "pageCount": 453,
923
+ "printedPageCount": 837,
924
+ "printType": "BOOK",
925
+ "categories": [
926
+ "Health & Fitness / Diseases / Cancer",
927
+ "Health & Fitness / Women's Health"
928
+ ],
929
+ "averageRating": 4.5,
930
+ "ratingsCount": 2,
931
+ "maturityRating": "NOT_MATURE",
932
+ "allowAnonLogging": true,
933
+ "contentVersion": "1.2.2.0.preview.3",
934
+ "imageLinks": {
935
+ "smallThumbnail": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=5&edge=curl&imgtk=AFLRE70r3eCExVr6PxqyqtVZb7SeowOVtnOtpwHKYx5Wf8w6fA8F7A9gOjlvU_hwUdZOHm7b5YIus7oVXu9Hxtn38IAmak95FIk0zILZUDeN1OyX42RdeU55YvIId9EqR06Mhg2GuF3e&source=gbs_api",
936
+ "thumbnail": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&imgtk=AFLRE73_abQZwpGJHP_FCcdunhE9yUa_EDseNVFXoRfAIC7Mr123eRtv1Tk4zs8Hfjg31yfjGKZmyEdJCFobFCmF3G8h-eIL_pf_0pIa42MC6BlR8qysPCVrgB1IrPSxp1-KYH4Kvuh-&source=gbs_api",
937
+ "small": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=2&edge=curl&imgtk=AFLRE70qlqrnAekGlsmqCwVbBK9ak-jLs5XBqa7GYMZ-Mxpdwsn1hHx87A0XlFveoalKYa8szEM6_yO_b_Hg5_D4lEOl7L89ps2omW7AnMIMRwnqPk7w9dY3haGpJCS9ncpnHoVSLltu&source=gbs_api",
938
+ "medium": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=3&edge=curl&imgtk=AFLRE73Wz7vq33VE0NKflKXjISn6SxgrF55tDbR5DHodigPdio8cN3ZvvgrHq4v4GIBCGbtgsRU8gcGHcrdeWOK4zAu9I9WOn6vS2fEDAWJDGzLZ3Ri5QuN9bYokW1wuzqq0Ti5C3bUY&source=gbs_api",
939
+ "large": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=4&edge=curl&imgtk=AFLRE701Qk5up99WkoNJXBydoQZc-yOjzb0RALwanKSJuk8hAbOJrAFaBbywlFTlLa0EgSAwat6QSpE1DGFj1pDht_T6q80SaCkbwAfB5Txb15fBvITBg5aNZswO8nn6M9dQnRVnBkmL&source=gbs_api",
940
+ "extraLarge": "http://books.google.com/books/content?id=-TAxAAAAQBAJ&printsec=frontcover&img=1&zoom=6&edge=curl&imgtk=AFLRE739XnIOiHtXCcIG6ha6Ac4Fv1IxR_CGPpf8FrRkDpkxn3NIeEJUaDaQD-P_Ld6Bi-JnqPM5zhmglwYgawL75nSHTyt4fI5W-67bLuqhiPRR6IjikgHCYJKZ8-1vDXYZL9wo20Z5&source=gbs_api"
941
+ },
942
+ "language": "en",
943
+ "previewLink": "http://books.google.com/books?id=-TAxAAAAQBAJ&hl=&source=gbs_api",
944
+ "infoLink": "http://books.google.com/books?id=-TAxAAAAQBAJ&hl=&source=gbs_api",
945
+ "canonicalVolumeLink": "http://books.google.com/books/about/The_Mayo_Clinic_Breast_Cancer_Book.html?hl=&id=-TAxAAAAQBAJ"
946
+ },
947
+ "layerInfo": {
948
+ "layers": [
949
+ {
950
+ "layerId": "geo",
951
+ "volumeAnnotationsVersion": "8"
952
+ }
953
+ ]
954
+ },
955
+ "saleInfo": {
956
+ "country": "US",
957
+ "saleability": "FOR_SALE",
958
+ "isEbook": true,
959
+ "listPrice": {
960
+ "amount": 11.99,
961
+ "currencyCode": "USD"
962
+ },
963
+ "retailPrice": {
964
+ "amount": 11.99,
965
+ "currencyCode": "USD"
966
+ },
967
+ "buyLink": "http://books.google.com/books?id=-TAxAAAAQBAJ&hl=&buy=&source=gbs_api",
968
+ "offers": [
969
+ {
970
+ "finskyOfferType": 1,
971
+ "listPrice": {
972
+ "amountInMicros": 1.199E7,
973
+ "currencyCode": "USD"
974
+ },
975
+ "retailPrice": {
976
+ "amountInMicros": 1.199E7,
977
+ "currencyCode": "USD"
978
+ }
979
+ }
980
+ ]
981
+ },
982
+ "accessInfo": {
983
+ "country": "US",
984
+ "viewability": "PARTIAL",
985
+ "embeddable": true,
986
+ "publicDomain": false,
987
+ "textToSpeechPermission": "ALLOWED",
988
+ "epub": {
989
+ "isAvailable": true,
990
+ "acsTokenLink": "http://books.google.com/books/download/The_Mayo_Clinic_Breast_Cancer_Book-sample-epub.acsm?id=-TAxAAAAQBAJ&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
991
+ },
992
+ "pdf": {
993
+ "isAvailable": true,
994
+ "acsTokenLink": "http://books.google.com/books/download/The_Mayo_Clinic_Breast_Cancer_Book-sample-pdf.acsm?id=-TAxAAAAQBAJ&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
995
+ },
996
+ "webReaderLink": "http://books.google.com/books/reader?id=-TAxAAAAQBAJ&hl=&printsec=frontcover&output=reader&source=gbs_api",
997
+ "accessViewStatus": "SAMPLE",
998
+ "quoteSharingAllowed": false
999
+ }
1000
+ }
413
1001
  http_version:
414
- recorded_at: Thu, 03 Jan 2013 00:21:29 GMT
415
- recorded_with: VCR 2.3.0
1002
+ recorded_at: Mon, 21 Sep 2015 14:28:04 GMT
1003
+ recorded_with: VCR 2.9.3