bento_search 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +299 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/images/bento_search/large_loader.gif +0 -0
  5. data/app/assets/javascripts/bento_search.js +3 -0
  6. data/app/assets/javascripts/bento_search/ajax_load.js +22 -0
  7. data/app/assets/stylesheets/bento_search/bento.css +4 -0
  8. data/app/controllers/bento_search/bento_search_controller.rb +7 -0
  9. data/app/controllers/bento_search/search_controller.rb +72 -0
  10. data/app/helpers/bento_search_helper.rb +138 -0
  11. data/app/item_decorators/bento_search/only_premade_openurl.rb +16 -0
  12. data/app/item_decorators/bento_search/openurl_add_other_link.rb +35 -0
  13. data/app/item_decorators/bento_search/openurl_main_link.rb +30 -0
  14. data/app/models/bento_search/author.rb +25 -0
  15. data/app/models/bento_search/link.rb +30 -0
  16. data/app/models/bento_search/multi_searcher.rb +109 -0
  17. data/app/models/bento_search/openurl_creator.rb +128 -0
  18. data/app/models/bento_search/registrar.rb +70 -0
  19. data/app/models/bento_search/result_item.rb +203 -0
  20. data/app/models/bento_search/results.rb +54 -0
  21. data/app/models/bento_search/results/pagination.rb +67 -0
  22. data/app/models/bento_search/search_engine.rb +219 -0
  23. data/app/models/bento_search/search_engine/capabilities.rb +65 -0
  24. data/app/search_engines/bento_search/#Untitled-1# +11 -0
  25. data/app/search_engines/bento_search/ebsco_host_engine.rb +356 -0
  26. data/app/search_engines/bento_search/eds_engine.rb +557 -0
  27. data/app/search_engines/bento_search/google_books_engine.rb +184 -0
  28. data/app/search_engines/bento_search/primo_engine.rb +231 -0
  29. data/app/search_engines/bento_search/scopus_engine.rb +295 -0
  30. data/app/search_engines/bento_search/summon_engine.rb +398 -0
  31. data/app/search_engines/bento_search/xerxes_engine.rb +168 -0
  32. data/app/views/bento_search/_link.html.erb +4 -0
  33. data/app/views/bento_search/_search_error.html.erb +22 -0
  34. data/app/views/bento_search/_std_item.html.erb +39 -0
  35. data/app/views/bento_search/search/search.html.erb +1 -0
  36. data/config/locales/en.yml +25 -0
  37. data/lib/bento_search.rb +29 -0
  38. data/lib/bento_search/engine.rb +5 -0
  39. data/lib/bento_search/routes.rb +45 -0
  40. data/lib/bento_search/version.rb +3 -0
  41. data/lib/generators/bento_search/pull_ebsco_dbs_generator.rb +24 -0
  42. data/lib/generators/bento_search/templates/ebsco_global_var.erb +6 -0
  43. data/lib/http_client_patch/include_client.rb +86 -0
  44. data/lib/tasks/bento_search_tasks.rake +4 -0
  45. data/test/dummy/README.rdoc +261 -0
  46. data/test/dummy/Rakefile +7 -0
  47. data/test/dummy/app/assets/javascripts/application.js +15 -0
  48. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  49. data/test/dummy/app/controllers/application_controller.rb +3 -0
  50. data/test/dummy/app/helpers/application_helper.rb +2 -0
  51. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  52. data/test/dummy/config.ru +4 -0
  53. data/test/dummy/config/application.rb +56 -0
  54. data/test/dummy/config/boot.rb +10 -0
  55. data/test/dummy/config/database.yml +25 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +37 -0
  58. data/test/dummy/config/environments/production.rb +67 -0
  59. data/test/dummy/config/environments/test.rb +37 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/inflections.rb +15 -0
  62. data/test/dummy/config/initializers/mime_types.rb +5 -0
  63. data/test/dummy/config/initializers/secret_token.rb +7 -0
  64. data/test/dummy/config/initializers/session_store.rb +8 -0
  65. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  66. data/test/dummy/config/locales/en.yml +5 -0
  67. data/test/dummy/config/routes.rb +6 -0
  68. data/test/dummy/db/test.sqlite3 +0 -0
  69. data/test/dummy/log/test.log +3100 -0
  70. data/test/dummy/public/404.html +26 -0
  71. data/test/dummy/public/422.html +26 -0
  72. data/test/dummy/public/500.html +25 -0
  73. data/test/dummy/public/favicon.ico +0 -0
  74. data/test/dummy/script/rails +6 -0
  75. data/test/functional/bento_search/search_controller_test.rb +81 -0
  76. data/test/helper/bento_search_helper_test.rb +125 -0
  77. data/test/integration/navigation_test.rb +10 -0
  78. data/test/support/mock_engine.rb +23 -0
  79. data/test/support/test_with_cassette.rb +38 -0
  80. data/test/test_helper.rb +52 -0
  81. data/test/unit/#vcr_test.rb# +68 -0
  82. data/test/unit/ebsco_host_engine_test.rb +134 -0
  83. data/test/unit/eds_engine_test.rb +105 -0
  84. data/test/unit/google_books_engine_test.rb +93 -0
  85. data/test/unit/item_decorators_test.rb +66 -0
  86. data/test/unit/multi_searcher_test.rb +49 -0
  87. data/test/unit/openurl_creator_test.rb +111 -0
  88. data/test/unit/pagination_test.rb +59 -0
  89. data/test/unit/primo_engine_test.rb +37 -0
  90. data/test/unit/register_engine_test.rb +50 -0
  91. data/test/unit/result_item_display_test.rb +39 -0
  92. data/test/unit/result_item_test.rb +36 -0
  93. data/test/unit/scopus_engine_test.rb +130 -0
  94. data/test/unit/search_engine_base_test.rb +178 -0
  95. data/test/unit/search_engine_test.rb +95 -0
  96. data/test/unit/summon_engine_test.rb +161 -0
  97. data/test/unit/xerxes_engine_test.rb +70 -0
  98. data/test/vcr_cassettes/ebscohost/error_bad_db.yml +45 -0
  99. data/test/vcr_cassettes/ebscohost/error_bad_password.yml +45 -0
  100. data/test/vcr_cassettes/ebscohost/get_info.yml +3626 -0
  101. data/test/vcr_cassettes/ebscohost/live_search.yml +45 -0
  102. data/test/vcr_cassettes/ebscohost/live_search_smoke_test.yml +1311 -0
  103. data/test/vcr_cassettes/eds/basic_search_smoke_test.yml +1811 -0
  104. data/test/vcr_cassettes/eds/get_auth_token.yml +75 -0
  105. data/test/vcr_cassettes/eds/get_auth_token_failure.yml +39 -0
  106. data/test/vcr_cassettes/eds/get_with_auth.yml +243 -0
  107. data/test/vcr_cassettes/eds/get_with_auth_recovers_from_bad_auth.yml +368 -0
  108. data/test/vcr_cassettes/gbs/error_condition.yml +40 -0
  109. data/test/vcr_cassettes/gbs/pagination.yml +702 -0
  110. data/test/vcr_cassettes/gbs/search.yml +340 -0
  111. data/test/vcr_cassettes/primo/search_smoke_test.yml +1112 -0
  112. data/test/vcr_cassettes/scopus/bad_api_key_should_return_error_response.yml +60 -0
  113. data/test/vcr_cassettes/scopus/escaped_chars.yml +187 -0
  114. data/test/vcr_cassettes/scopus/fielded_search.yml +176 -0
  115. data/test/vcr_cassettes/scopus/simple_search.yml +227 -0
  116. data/test/vcr_cassettes/scopus/zero_results_search.yml +67 -0
  117. data/test/vcr_cassettes/summon/bad_auth.yml +54 -0
  118. data/test/vcr_cassettes/summon/proper_tags_for_snippets.yml +216 -0
  119. data/test/vcr_cassettes/summon/search.yml +242 -0
  120. data/test/vcr_cassettes/xerxes/live_search.yml +2580 -0
  121. data/test/view/std_item_test.rb +98 -0
  122. metadata +421 -0
@@ -0,0 +1,40 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.googleapis.com/books/v1/volumes?key=BAD_KEY&maxResults=10&q=cancer
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 400
13
+ message: Bad Request
14
+ headers:
15
+ Content-Type:
16
+ - application/json; charset=UTF-8
17
+ Date:
18
+ - Mon, 06 Aug 2012 15:27:13 GMT
19
+ Expires:
20
+ - Mon, 06 Aug 2012 15:27:13 GMT
21
+ Cache-Control:
22
+ - private, max-age=0
23
+ X-Content-Type-Options:
24
+ - nosniff
25
+ X-Frame-Options:
26
+ - SAMEORIGIN
27
+ X-Xss-Protection:
28
+ - 1; mode=block
29
+ Server:
30
+ - GSE
31
+ Transfer-Encoding:
32
+ - chunked
33
+ 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"
38
+ http_version:
39
+ recorded_at: Mon, 06 Aug 2012 15:27:13 GMT
40
+ recorded_with: VCR 2.2.4
@@ -0,0 +1,702 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.googleapis.com/books/v1/volumes?maxResults=20&q=cancer&startIndex=40
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ Expires:
16
+ - Mon, 06 Aug 2012 15:27:13 GMT
17
+ Date:
18
+ - Mon, 06 Aug 2012 15:27:13 GMT
19
+ Cache-Control:
20
+ - private, max-age=0, must-revalidate, no-transform
21
+ Etag:
22
+ - ! '"scy4Nkp2VpLNZ5k9N-okuvp-sNk/CP512FXi4xF9QCMgzMJuwIlyqA4"'
23
+ Content-Type:
24
+ - application/json; charset=UTF-8
25
+ X-Content-Type-Options:
26
+ - nosniff
27
+ X-Frame-Options:
28
+ - SAMEORIGIN
29
+ X-Xss-Protection:
30
+ - 1; mode=block
31
+ Server:
32
+ - GSE
33
+ Transfer-Encoding:
34
+ - chunked
35
+ body:
36
+ encoding: UTF-8
37
+ string: ! "{\n \"kind\": \"books#volumes\",\n \"totalItems\": 1745,\n \"items\":
38
+ [\n {\n \"kind\": \"books#volume\",\n \"id\": \"h-eNUzElkP8C\",\n \"etag\":
39
+ \"hV0HRegqWao\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/h-eNUzElkP8C\",\n
40
+ \ \"volumeInfo\": {\n \"title\": \"Cancer Control\",\n \"subtitle\":
41
+ \"Knowledge Into Action : WHO Guide for Effective Programmes. Policy and advocacy\",\n
42
+ \ \"authors\": [\n \"World Health Organization\"\n ],\n \"publishedDate\":
43
+ \"2008\",\n \"description\": \"More than 70% of all cancer deaths occur
44
+ in low- and middle-income countries, where resources available for prevention,
45
+ diagnosis and treatment of cancer are limited or nonexistent. Yet cancer is
46
+ to a large extent avoidable. Over 40% of all cancers can be prevented. Some
47
+ of the most common cancers are curable if detected early and treated. Even
48
+ with late cancer, the suffering of patients can be relieved with good palliative
49
+ care. Cancer Control: Knowledge into Action, WHO Guide for Effective Programsis
50
+ a series of six modules offering guidance on all important aspects of effective
51
+ cancer control planning and implementation. This sixth module on Policy and
52
+ Advocacy shows decision makers and program managers how to advocate for policy
53
+ development and effective program implementation of cancer control.\",\n \"industryIdentifiers\":
54
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"9241547529\"\n
55
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9789241547529\"\n
56
+ \ }\n ],\n \"pageCount\": 48,\n \"printType\": \"BOOK\",\n \"contentVersion\":
57
+ \"0.1.1.0.preview.2\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks2.books.google.com/books?id=h-eNUzElkP8C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
58
+ \ \"thumbnail\": \"http://bks2.books.google.com/books?id=h-eNUzElkP8C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
59
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=h-eNUzElkP8C&printsec=frontcover&dq=cancer&hl=&cd=41&source=gbs_api\",\n
60
+ \ \"infoLink\": \"http://books.google.com/books?id=h-eNUzElkP8C&dq=cancer&hl=&source=gbs_api\",\n
61
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer_Control.html?hl=&id=h-eNUzElkP8C\"\n
62
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
63
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
64
+ \"US\",\n \"viewability\": \"ALL_PAGES\",\n \"embeddable\": true,\n
65
+ \ \"publicDomain\": false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n
66
+ \ \"epub\": {\n \"isAvailable\": true,\n \"acsTokenLink\": \"http://books.google.com/books/download/Cancer_Control-sample-epub.acsm?id=h-eNUzElkP8C&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
67
+ \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
68
+ \"http://books.google.com/books/reader?id=h-eNUzElkP8C&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
69
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
70
+ \"Cancer Control: Knowledge into Action, WHO Guide for Effective Programsis
71
+ a series of six modules offering guidance on all important aspects of effective
72
+ cancer control planning and implementation.\"\n }\n },\n {\n \"kind\":
73
+ \"books#volume\",\n \"id\": \"KL5ppEaiXikC\",\n \"etag\": \"t5ztkmM9gxo\",\n
74
+ \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/KL5ppEaiXikC\",\n
75
+ \ \"volumeInfo\": {\n \"title\": \"Cancer Diagnosed: What Now?\",\n \"authors\":
76
+ [\n \"Dr Willem Serfontein\"\n ],\n \"publisher\": \"Xlibris Corporation\",\n
77
+ \ \"publishedDate\": \"2011-01-11\",\n \"industryIdentifiers\": [\n {\n
78
+ \ \"type\": \"ISBN_10\",\n \"identifier\": \"1456850733\"\n },\n
79
+ \ {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781456850739\"\n
80
+ \ }\n ],\n \"pageCount\": 392,\n \"printType\": \"BOOK\",\n \"contentVersion\":
81
+ \"0.1.0.0.preview.3\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks9.books.google.com/books?id=KL5ppEaiXikC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
82
+ \ \"thumbnail\": \"http://bks9.books.google.com/books?id=KL5ppEaiXikC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
83
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=KL5ppEaiXikC&printsec=frontcover&dq=cancer&hl=&cd=42&source=gbs_api\",\n
84
+ \ \"infoLink\": \"http://books.google.com/books?id=KL5ppEaiXikC&dq=cancer&hl=&source=gbs_api\",\n
85
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer_Diagnosed_What_Now.html?hl=&id=KL5ppEaiXikC\"\n
86
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
87
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
88
+ 3.99,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
89
+ 3.03,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=KL5ppEaiXikC&dq=cancer&hl=&buy=&source=gbs_api\"\n
90
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
91
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
92
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
93
+ \ \"acsTokenLink\": \"http://books.google.com/books/download/Cancer_Diagnosed_What_Now-sample-epub.acsm?id=KL5ppEaiXikC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
94
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
95
+ \"http://books.google.com/books/download/Cancer_Diagnosed_What_Now-sample-pdf.acsm?id=KL5ppEaiXikC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
96
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=KL5ppEaiXikC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
97
+ \ \"accessViewStatus\": \"SAMPLE\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
98
+ \ \"id\": \"Ut0o3gwHRekC\",\n \"etag\": \"d3Bnd4FArHo\",\n \"selfLink\":
99
+ \"https://www.googleapis.com/books/v1/volumes/Ut0o3gwHRekC\",\n \"volumeInfo\":
100
+ {\n \"title\": \"The Breast Cancer Wars\",\n \"subtitle\": \"Hope, Fear,
101
+ and the Pursuit of a Cure in Twentieth-Century America\",\n \"authors\":
102
+ [\n \"Barron H. Lerner\"\n ],\n \"publisher\": \"Oxford University
103
+ Press, USA\",\n \"publishedDate\": \"2001-05-31\",\n \"description\":
104
+ \"The author brilliantly chronicles the various campaigns waged against breast
105
+ cancer and its effects on women during the last century.\",\n \"industryIdentifiers\":
106
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"0195142616\"\n
107
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780195142617\"\n
108
+ \ }\n ],\n \"pageCount\": 383,\n \"printType\": \"BOOK\",\n \"contentVersion\":
109
+ \"0.1.1.0.preview.3\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks5.books.google.com/books?id=Ut0o3gwHRekC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
110
+ \ \"thumbnail\": \"http://bks5.books.google.com/books?id=Ut0o3gwHRekC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
111
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=Ut0o3gwHRekC&printsec=frontcover&dq=cancer&hl=&cd=43&source=gbs_api\",\n
112
+ \ \"infoLink\": \"http://books.google.com/books?id=Ut0o3gwHRekC&dq=cancer&hl=&source=gbs_api\",\n
113
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/The_Breast_Cancer_Wars.html?hl=&id=Ut0o3gwHRekC\"\n
114
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
115
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
116
+ 22.95,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
117
+ 13.77,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=Ut0o3gwHRekC&dq=cancer&hl=&buy=&source=gbs_api\"\n
118
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
119
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
120
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
121
+ \ \"acsTokenLink\": \"http://books.google.com/books/download/The_Breast_Cancer_Wars-sample-epub.acsm?id=Ut0o3gwHRekC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
122
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
123
+ \"http://books.google.com/books/download/The_Breast_Cancer_Wars-sample-pdf.acsm?id=Ut0o3gwHRekC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
124
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=Ut0o3gwHRekC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
125
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
126
+ \"The author brilliantly chronicles the various campaigns waged against breast
127
+ cancer and its effects on women during the last century.\"\n }\n },\n {\n
128
+ \ \"kind\": \"books#volume\",\n \"id\": \"tY2pzPVRu5wC\",\n \"etag\":
129
+ \"C4jul9MgC2Y\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/tY2pzPVRu5wC\",\n
130
+ \ \"volumeInfo\": {\n \"title\": \"Homoeopathy in Cancer Treatment\",\n
131
+ \ \"authors\": [\n \"R. K. Roy\"\n ],\n \"publisher\": \"B Jain
132
+ Pub Pvt Limited\",\n \"publishedDate\": \"2003-01-01\",\n \"description\":
133
+ \"The author has put forward several thought-provoking ideas of his own which
134
+ could be useful in the field of cancer therapy. His approaches of analysing
135
+ and understanding malignancy, its remedies and their applications from various
136
+ angle are innvative.\",\n \"industryIdentifiers\": [\n {\n \"type\":
137
+ \"ISBN_10\",\n \"identifier\": \"8170218322\"\n },\n {\n \"type\":
138
+ \"ISBN_13\",\n \"identifier\": \"9788170218326\"\n }\n ],\n \"pageCount\":
139
+ 252,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"0.0.1.0.preview.0\",\n
140
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=tY2pzPVRu5wC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
141
+ \ \"thumbnail\": \"http://bks8.books.google.com/books?id=tY2pzPVRu5wC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
142
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=tY2pzPVRu5wC&printsec=frontcover&dq=cancer&hl=&cd=44&source=gbs_api\",\n
143
+ \ \"infoLink\": \"http://books.google.com/books?id=tY2pzPVRu5wC&dq=cancer&hl=&source=gbs_api\",\n
144
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Homoeopathy_in_Cancer_Treatment.html?hl=&id=tY2pzPVRu5wC\"\n
145
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
146
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
147
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
148
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
149
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
150
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=tY2pzPVRu5wC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
151
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
152
+ \"The author has put forward several thought-provoking ideas of his own which
153
+ could be useful in the field of cancer therapy.\"\n }\n },\n {\n \"kind\":
154
+ \"books#volume\",\n \"id\": \"onsYAx-Ouc4C\",\n \"etag\": \"UhDM873wNUw\",\n
155
+ \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/onsYAx-Ouc4C\",\n
156
+ \ \"volumeInfo\": {\n \"title\": \"Early Detection and Prevention of Colorectal
157
+ Cancer\",\n \"authors\": [\n \"Karen E. Kim\"\n ],\n \"publisher\":
158
+ \"Slack Incorporated\",\n \"publishedDate\": \"2009-05-15\",\n \"description\":
159
+ \"Colorectal cancer is the third most common malignancy in the United States
160
+ and the third leading cause of cancer mortality in both men and women. As
161
+ gastroenterologists and primary care physicians are faced with patients with
162
+ colorectal cancer, the future road to decreasing these numbers begins with
163
+ increased knowledge and awareness of the effects that biology, genetics, environment,
164
+ and lifestyle have on the disease. In Early Detection and Prevention of Colorectal
165
+ Cancer, Dr. Karen Kim and her esteemed contributors take a comprehensive look
166
+ into the world of colorectal cancer and the ways that today’s physician can
167
+ positively impact the patient’s outcome. Unique Features Include: · Novel
168
+ screening modalities · Disparities in colorectal cancer · Latest information
169
+ on genetic testing for colorectal cancer · Screening algorithms for average
170
+ and high risk patients · Economics of screening and prevention Some Chapter
171
+ Topics Include: · Colonic carcinogenesis · Environmental factors and colorectal
172
+ cancer · Chemoprevention of colorectal cancer · Biomarkers and colorectal
173
+ cancer · Health policy and colorectal cancer prevention With cutting-edge
174
+ technology and information, Early Detection and Prevention of Colorectal Cancer
175
+ should be in the hands of all gastroenterologists, primary care physicians,
176
+ and those in training. Only by understanding the biology and genetics of this
177
+ disease, and the effects that environment and lifestyle have on it, can gastroenterologists
178
+ truly make a difference with the treatment of their patients.\",\n \"industryIdentifiers\":
179
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"1556428375\"\n
180
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781556428371\"\n
181
+ \ }\n ],\n \"pageCount\": 255,\n \"printType\": \"BOOK\",\n \"contentVersion\":
182
+ \"0.0.1.0.preview.1\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=onsYAx-Ouc4C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
183
+ \ \"thumbnail\": \"http://bks8.books.google.com/books?id=onsYAx-Ouc4C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
184
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=onsYAx-Ouc4C&printsec=frontcover&dq=cancer&hl=&cd=45&source=gbs_api\",\n
185
+ \ \"infoLink\": \"http://books.google.com/books?id=onsYAx-Ouc4C&dq=cancer&hl=&source=gbs_api\",\n
186
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Early_Detection_and_Prevention_of_Colore.html?hl=&id=onsYAx-Ouc4C\"\n
187
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
188
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
189
+ 89.96,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
190
+ 70.17,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=onsYAx-Ouc4C&dq=cancer&hl=&buy=&source=gbs_api\"\n
191
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
192
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
193
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": false\n
194
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
195
+ \"http://books.google.com/books/download/Early_Detection_and_Prevention_of_Colore-sample-pdf.acsm?id=onsYAx-Ouc4C&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
196
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=onsYAx-Ouc4C&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
197
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
198
+ \"In Early Detection and Prevention of Colorectal Cancer, Dr. Karen Kim and
199
+ her esteemed contributors take a comprehensive look into the world of colorectal
200
+ cancer and the ways that today’s physician can positively impact the patient’s
201
+ ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"xivjxWNAdiYC\",\n
202
+ \ \"etag\": \"MqAFa4sAX8o\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/xivjxWNAdiYC\",\n
203
+ \ \"volumeInfo\": {\n \"title\": \"Lung Cancer And Mesothelioma\",\n \"authors\":
204
+ [\n \"Howard Gutman\"\n ],\n \"publisher\": \"Howard Gutman\",\n
205
+ \ \"publishedDate\": \"2004-10-29\",\n \"industryIdentifiers\": [\n {\n
206
+ \ \"type\": \"ISBN_10\",\n \"identifier\": \"141342001X\"\n },\n
207
+ \ {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781413420012\"\n
208
+ \ }\n ],\n \"pageCount\": 482,\n \"printType\": \"BOOK\",\n \"contentVersion\":
209
+ \"preview-1.0.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=xivjxWNAdiYC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
210
+ \ \"thumbnail\": \"http://bks8.books.google.com/books?id=xivjxWNAdiYC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
211
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=xivjxWNAdiYC&printsec=frontcover&dq=cancer&hl=&cd=46&source=gbs_api\",\n
212
+ \ \"infoLink\": \"http://books.google.com/books?id=xivjxWNAdiYC&dq=cancer&hl=&source=gbs_api\",\n
213
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Lung_Cancer_And_Mesothelioma.html?hl=&id=xivjxWNAdiYC\"\n
214
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
215
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
216
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
217
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
218
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
219
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=xivjxWNAdiYC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
220
+ \ \"accessViewStatus\": \"SAMPLE\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
221
+ \ \"id\": \"I9sO_TiIh4UC\",\n \"etag\": \"jUz1ZGvABcM\",\n \"selfLink\":
222
+ \"https://www.googleapis.com/books/v1/volumes/I9sO_TiIh4UC\",\n \"volumeInfo\":
223
+ {\n \"title\": \"Breast cancer\",\n \"subtitle\": \"society shapes an
224
+ epidemic\",\n \"authors\": [\n \"Anne S. Kasper\",\n \"Susan J.
225
+ Ferguson\"\n ],\n \"publisher\": \"Palgrave Macmillan\",\n \"publishedDate\":
226
+ \"2001-12-25\",\n \"description\": \"Breast Cancer: Society Shapes an Epidemic
227
+ provides an innovative look at the social and political contexts of breast
228
+ cancer and examines how this illness has become a social problem. This is
229
+ not a book about breast cancer as a biological disease, its diagnosis and
230
+ treatment, or the latest research to cure it. Rather, it looks at how economics,
231
+ politics, gender, social class, and race-ethnicity have deeply influenced
232
+ the science behind breast cancer research, spurred the growth of a breast
233
+ cancer industry, generated media portrayals of women with the disease, and
234
+ defined and influenced women’s experiences with breast cancer. The contributors
235
+ address the social construction of breast cancer as an illness and as an area
236
+ of scientific controversy, advocacy, and public policy. Chapters on the history
237
+ of breast cancer, the health care system, the environment, and the marketing
238
+ of breast cancer, among others, tease apart the complex social forces that
239
+ have shaped our collective and individual responses to breast cancer.\",\n
240
+ \ \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n \"identifier\":
241
+ \"0312294514\"\n },\n {\n \"type\": \"ISBN_13\",\n \"identifier\":
242
+ \"9780312294519\"\n }\n ],\n \"pageCount\": 388,\n \"printType\":
243
+ \"BOOK\",\n \"categories\": [\n \"Health & Fitness\"\n ],\n \"averageRating\":
244
+ 4.0,\n \"ratingsCount\": 1,\n \"contentVersion\": \"preview-1.0.0\",\n
245
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=I9sO_TiIh4UC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
246
+ \ \"thumbnail\": \"http://bks3.books.google.com/books?id=I9sO_TiIh4UC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
247
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=I9sO_TiIh4UC&printsec=frontcover&dq=cancer&hl=&cd=47&source=gbs_api\",\n
248
+ \ \"infoLink\": \"http://books.google.com/books?id=I9sO_TiIh4UC&dq=cancer&hl=&source=gbs_api\",\n
249
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Breast_cancer.html?hl=&id=I9sO_TiIh4UC\"\n
250
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
251
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
252
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
253
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
254
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
255
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=I9sO_TiIh4UC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
256
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
257
+ \"This is not a book about breast cancer as a biological disease, its diagnosis
258
+ and treatment, or the latest research to cure it.\"\n }\n },\n {\n \"kind\":
259
+ \"books#volume\",\n \"id\": \"tFLWob5o7OQC\",\n \"etag\": \"5YQTkPkWnbA\",\n
260
+ \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/tFLWob5o7OQC\",\n
261
+ \ \"volumeInfo\": {\n \"title\": \"The Biology and Treatment of Cancer\",\n
262
+ \ \"subtitle\": \"Understanding Cancer\",\n \"authors\": [\n \"Arthur
263
+ B. Pardee\",\n \"Gary S. Stein\"\n ],\n \"publisher\": \"Wiley-Blackwell\",\n
264
+ \ \"publishedDate\": \"2011-09-20\",\n \"description\": \"Offers a broad
265
+ audience a concise presentation of the most up-to-date knowledge about the
266
+ biology and treatment of cancerFull coverage of cancer prevention and controlClear,
267
+ thorough discussion of current and possible future therapiesEdited by two
268
+ of the most eminent and widely recognized scholars of cancer research and
269
+ therapeutics in the world, with contributions from top researchers and clinicians
270
+ from across North America\",\n \"industryIdentifiers\": [\n {\n \"type\":
271
+ \"ISBN_10\",\n \"identifier\": \"1118208455\"\n },\n {\n \"type\":
272
+ \"ISBN_13\",\n \"identifier\": \"9781118208458\"\n }\n ],\n \"pageCount\":
273
+ 287,\n \"printType\": \"BOOK\",\n \"categories\": [\n \"Medical\"\n
274
+ \ ],\n \"contentVersion\": \"0.2.1.0.preview.3\",\n \"imageLinks\":
275
+ {\n \"smallThumbnail\": \"http://bks0.books.google.com/books?id=tFLWob5o7OQC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
276
+ \ \"thumbnail\": \"http://bks0.books.google.com/books?id=tFLWob5o7OQC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
277
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=tFLWob5o7OQC&printsec=frontcover&dq=cancer&hl=&cd=48&source=gbs_api\",\n
278
+ \ \"infoLink\": \"http://books.google.com/books?id=tFLWob5o7OQC&dq=cancer&hl=&source=gbs_api\",\n
279
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/The_Biology_and_Treatment_of_Cancer.html?hl=&id=tFLWob5o7OQC\"\n
280
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
281
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
282
+ 69.99,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
283
+ 69.99,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=tFLWob5o7OQC&dq=cancer&hl=&buy=&source=gbs_api\"\n
284
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
285
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
286
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
287
+ \ \"acsTokenLink\": \"http://books.google.com/books/download/The_Biology_and_Treatment_of_Cancer-sample-epub.acsm?id=tFLWob5o7OQC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
288
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
289
+ \"http://books.google.com/books/download/The_Biology_and_Treatment_of_Cancer-sample-pdf.acsm?id=tFLWob5o7OQC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
290
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=tFLWob5o7OQC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
291
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
292
+ \"" --Hector F. DeLuca, PhD, University of Wisconsin-Madison Edited by
293
+ two of the most eminent and widely recognized scholars in the field, and with
294
+ contributions from top researchers and clinicians from across North America,
295
+ this book offers ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
296
+ \ \"id\": \"dy2s5ZoUgngC\",\n \"etag\": \"Rq+YKy7f6FY\",\n \"selfLink\":
297
+ \"https://www.googleapis.com/books/v1/volumes/dy2s5ZoUgngC\",\n \"volumeInfo\":
298
+ {\n \"title\": \"Diabetes and Cancer\",\n \"subtitle\": \"Epidemiological
299
+ Evidence and Molecular Links\",\n \"authors\": [\n \"Kurt S. Zänker\"\n
300
+ \ ],\n \"publisher\": \"S Karger Ag\",\n \"publishedDate\": \"2008\",\n
301
+ \ \"description\": \"The interdisciplinary work revealing varied roles in
302
+ biological processes of chronic diseases has led to a new field of research
303
+ concerning common molecular and clinical features of chronic diseases. Epidemiological
304
+ literature suggests an association between the history of metabolic syndrome/diabetes
305
+ mellitus type 2 and the risk of developing a variety of cancers.This book,
306
+ at the forefront of experimental and clinical research, is the first to highlight
307
+ the common molecular links between these two diseases. These tight links indicate
308
+ a complex interdependency between both diseases on a cellular and hormonal
309
+ basis, which is influenced by a variety of aspects (e.g. nutritional, social
310
+ and neuro-immunological factors). Special attention has been given to the
311
+ fundamental role of the switch from oxidative phosphorylation to glycolysis
312
+ of cancer cells - the Warburg effect.Offering insights into the interdisciplinary
313
+ approaches of tomorrow, this publication will encourage endocrinologists,
314
+ oncologists, diabetologists, general practitioners, diabetic nurses and students
315
+ of life sciences working separately on various aspects of diabetes and cancer
316
+ to come together and combine therapies and strategies.\",\n \"industryIdentifiers\":
317
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"380558640X\"\n
318
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9783805586405\"\n
319
+ \ }\n ],\n \"pageCount\": 148,\n \"printType\": \"BOOK\",\n \"categories\":
320
+ [\n \"Medical\"\n ],\n \"averageRating\": 2.0,\n \"ratingsCount\":
321
+ 1,\n \"contentVersion\": \"0.1.0.0.preview.0\",\n \"imageLinks\": {\n
322
+ \ \"smallThumbnail\": \"http://bks6.books.google.com/books?id=dy2s5ZoUgngC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
323
+ \ \"thumbnail\": \"http://bks6.books.google.com/books?id=dy2s5ZoUgngC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
324
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=dy2s5ZoUgngC&printsec=frontcover&dq=cancer&hl=&cd=49&source=gbs_api\",\n
325
+ \ \"infoLink\": \"http://books.google.com/books?id=dy2s5ZoUgngC&dq=cancer&hl=&source=gbs_api\",\n
326
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Diabetes_and_Cancer.html?hl=&id=dy2s5ZoUgngC\"\n
327
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
328
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
329
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
330
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
331
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
332
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=dy2s5ZoUgngC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
333
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
334
+ \"Epidemiological literature suggests an association between the history of
335
+ metabolic syndrome/diabetes mellitus type 2 and the risk of developing a variety
336
+ of cancers.This book, at the forefront of experimental and clinical research,
337
+ is the ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
338
+ \"pPgvzuVQYpYC\",\n \"etag\": \"Hwvd3Yk1MfA\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/pPgvzuVQYpYC\",\n
339
+ \ \"volumeInfo\": {\n \"title\": \"Uterine Cancer\",\n \"authors\":
340
+ [\n \"Arlan F. Fuller\",\n \"Michael V. Seiden\",\n \"Robert Henry
341
+ Young\"\n ],\n \"publisher\": \"Pmph USA Limited\",\n \"publishedDate\":
342
+ \"2004\",\n \"description\": \"Three Harvard Medical School educators and
343
+ clinicians - specialists in gynecology, oncology, and pathology - edited this
344
+ multidisciplinary monograph. The editors offer the reader a comprehensive
345
+ overview of the most frequently diagnosed gynecologic malignancy: endometrial
346
+ carcinoma, as well as a collection of mesenchymal tumors. With more than 150
347
+ illustrations - including clinical photos, intraoperative photos, radiographs,
348
+ sonograms, photomicrographs, and explanatory tables and graphs - Uterine Cancers
349
+ also serves as your pictorial guide to these serious gynecologic problems.\",\n
350
+ \ \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n \"identifier\":
351
+ \"1550091638\"\n },\n {\n \"type\": \"ISBN_13\",\n \"identifier\":
352
+ \"9781550091632\"\n }\n ],\n \"pageCount\": 230,\n \"printType\":
353
+ \"BOOK\",\n \"categories\": [\n \"Medical\"\n ],\n \"contentVersion\":
354
+ \"1.0.0.0.preview.1\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks0.books.google.com/books?id=pPgvzuVQYpYC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
355
+ \ \"thumbnail\": \"http://bks0.books.google.com/books?id=pPgvzuVQYpYC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
356
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=pPgvzuVQYpYC&printsec=frontcover&dq=cancer&hl=&cd=50&source=gbs_api\",\n
357
+ \ \"infoLink\": \"http://books.google.com/books?id=pPgvzuVQYpYC&dq=cancer&hl=&source=gbs_api\",\n
358
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Uterine_Cancer.html?hl=&id=pPgvzuVQYpYC\"\n
359
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
360
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
361
+ 108.76,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n
362
+ \ \"amount\": 87.01,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\":
363
+ \"http://books.google.com/books?id=pPgvzuVQYpYC&dq=cancer&hl=&buy=&source=gbs_api\"\n
364
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
365
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
366
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": false\n
367
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
368
+ \"http://books.google.com/books/download/Uterine_Cancer-sample-pdf.acsm?id=pPgvzuVQYpYC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
369
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=pPgvzuVQYpYC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
370
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
371
+ \"Three Harvard Medical School educators and clinicians - specialists in gynecology,
372
+ oncology, and pathology - edited this multidisciplinary monograph.\"\n }\n
373
+ \ },\n {\n \"kind\": \"books#volume\",\n \"id\": \"AfU2uRIqokUC\",\n
374
+ \ \"etag\": \"JEtoJe6M8AM\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/AfU2uRIqokUC\",\n
375
+ \ \"volumeInfo\": {\n \"title\": \"Viruses And Liver Cancer\",\n \"authors\":
376
+ [\n \"Edward Tabor\"\n ],\n \"publisher\": \"Elsevier Science\",\n
377
+ \ \"publishedDate\": \"2002-06-18\",\n \"description\": \"Hepatocellular
378
+ carcinoma (HCC) is one of the most important complications of chronic viral
379
+ hepatitis. It usually results in a fatal outcome if not discovered in its
380
+ earliest stages. Its close association with the hepatitis B and C viruses
381
+ makes it one of the first human cancers for which there is strong evidence
382
+ of a viral cause. For this reason it provides a model for studying viral carcinogenesis
383
+ in humans. In some countries, HCC is one of the most common tumors of adult
384
+ men. In addition, there is evidence that the incidence of this cancer has
385
+ doubled in the past 15 to 20 years in many countries, and the incidence has
386
+ doubled every 20 years for the past half century in Japan. In some studies,
387
+ the increase has been shown to be due primarily to cases associated with HCV
388
+ infection. Molecular studies of HCC show that mutations in oncogenes, in various
389
+ cellular repair pathways, and in tumor suppressor genes together appear to
390
+ contribute to the development of this cancer. In HCCs associated with hepatitis
391
+ B virus, the virus itself can interact with tumor suppressor proteins and
392
+ other cellular signals in ways that probably permit HCC to develop even when
393
+ there are no mutations in the genes for these signals. This work discusses
394
+ the latest concepts in molecular biology and the study of HCC which have led
395
+ to dramatic breakthroughs in our understanding of how it develops.\",\n \"industryIdentifiers\":
396
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"0444505806\"\n
397
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780444505804\"\n
398
+ \ }\n ],\n \"pageCount\": 176,\n \"printType\": \"BOOK\",\n \"categories\":
399
+ [\n \"Medical\"\n ],\n \"contentVersion\": \"0.0.1.0.preview.2\",\n
400
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks9.books.google.com/books?id=AfU2uRIqokUC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
401
+ \ \"thumbnail\": \"http://bks9.books.google.com/books?id=AfU2uRIqokUC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
402
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=AfU2uRIqokUC&printsec=frontcover&dq=cancer&hl=&cd=51&source=gbs_api\",\n
403
+ \ \"infoLink\": \"http://books.google.com/books?id=AfU2uRIqokUC&dq=cancer&hl=&source=gbs_api\",\n
404
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Viruses_And_Liver_Cancer.html?hl=&id=AfU2uRIqokUC\"\n
405
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
406
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
407
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
408
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
409
+ {\n \"isAvailable\": true,\n \"acsTokenLink\": \"http://books.google.com/books/download/Viruses_And_Liver_Cancer-sample-epub.acsm?id=AfU2uRIqokUC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
410
+ \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
411
+ \"http://books.google.com/books/reader?id=AfU2uRIqokUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
412
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
413
+ \"This work discusses the latest concepts in molecular biology and the study
414
+ of HCC which have led to dramatic breakthroughs in our understanding of how
415
+ it develops.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
416
+ \"gJbl3hfAvZAC\",\n \"etag\": \"0cjTR06uhdM\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/gJbl3hfAvZAC\",\n
417
+ \ \"volumeInfo\": {\n \"title\": \"Selected Topics in Cancer Modeling\",\n
418
+ \ \"subtitle\": \"Genesis, Evolution, Immune Competition, and Therapy\",\n
419
+ \ \"authors\": [\n \"Nicola Bellomo\",\n \"Elena de Angelis\"\n
420
+ \ ],\n \"publisher\": \"Birkhäuser Boston\",\n \"publishedDate\":
421
+ \"2008-09-25\",\n \"description\": \"This collection of selected chapters
422
+ offers a comprehensive overview of state-of-the-art mathematical methods and
423
+ tools for modeling and analyzing cancer phenomena. Topics covered include
424
+ stochastic evolutionary models of cancer initiation and progression, tumor
425
+ cords and their response to anticancer agents, and immune competition in tumor
426
+ progression and prevention. The complexity of modeling living matter requires
427
+ the development of new mathematical methods and ideas. This volume, written
428
+ by first-rate researchers in the field of mathematical biology, is one of
429
+ the first steps in that direction.\",\n \"industryIdentifiers\": [\n {\n
430
+ \ \"type\": \"ISBN_10\",\n \"identifier\": \"0817647120\"\n },\n
431
+ \ {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780817647124\"\n
432
+ \ }\n ],\n \"pageCount\": 473,\n \"printType\": \"BOOK\",\n \"contentVersion\":
433
+ \"preview-1.0.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks6.books.google.com/books?id=gJbl3hfAvZAC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
434
+ \ \"thumbnail\": \"http://bks6.books.google.com/books?id=gJbl3hfAvZAC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
435
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=gJbl3hfAvZAC&printsec=frontcover&dq=cancer&hl=&cd=52&source=gbs_api\",\n
436
+ \ \"infoLink\": \"http://books.google.com/books?id=gJbl3hfAvZAC&dq=cancer&hl=&source=gbs_api\",\n
437
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Selected_Topics_in_Cancer_Modeling.html?hl=&id=gJbl3hfAvZAC\"\n
438
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
439
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
440
+ 129.0,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
441
+ 99.0,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=gJbl3hfAvZAC&dq=cancer&hl=&buy=&source=gbs_api\"\n
442
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
443
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
444
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": false\n
445
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
446
+ \"http://books.google.com/books/download/Selected_Topics_in_Cancer_Modeling-sample-pdf.acsm?id=gJbl3hfAvZAC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
447
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=gJbl3hfAvZAC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
448
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
449
+ \"This collection of selected chapters is written by first-rate researchers
450
+ in the field of mathematical biology.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
451
+ \ \"id\": \"Zjgz0IQAXLMC\",\n \"etag\": \"KzuQW+7ewxk\",\n \"selfLink\":
452
+ \"https://www.googleapis.com/books/v1/volumes/Zjgz0IQAXLMC\",\n \"volumeInfo\":
453
+ {\n \"title\": \"The Complete Cancer Cleanse\",\n \"subtitle\": \"A
454
+ Proven Program to Detoxify and Renew Body, Mind, and Spirit\",\n \"authors\":
455
+ [\n \"Cherie Calbom\",\n \"John Calbom\",\n \"Michael Mahaffey\"\n
456
+ \ ],\n \"publisher\": \"Nelson Books\",\n \"publishedDate\": \"2007-01-02\",\n
457
+ \ \"description\": \"Cherie Calbom, \\\"The Juice Lady,\\\" therapist John
458
+ Calbom, and Michael Mahaffey, a twenty-year cancer survivor, present a unique,
459
+ multi-disciplinary approach to fighting cancer.\",\n \"industryIdentifiers\":
460
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"0785288635\"\n
461
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780785288633\"\n
462
+ \ }\n ],\n \"pageCount\": 345,\n \"printType\": \"BOOK\",\n \"categories\":
463
+ [\n \"Medical\"\n ],\n \"averageRating\": 5.0,\n \"ratingsCount\":
464
+ 2,\n \"contentVersion\": \"0.1.0.0.preview.2\",\n \"imageLinks\": {\n
465
+ \ \"smallThumbnail\": \"http://bks7.books.google.com/books?id=Zjgz0IQAXLMC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
466
+ \ \"thumbnail\": \"http://bks7.books.google.com/books?id=Zjgz0IQAXLMC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
467
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=Zjgz0IQAXLMC&printsec=frontcover&dq=cancer&hl=&cd=53&source=gbs_api\",\n
468
+ \ \"infoLink\": \"http://books.google.com/books?id=Zjgz0IQAXLMC&dq=cancer&hl=&source=gbs_api\",\n
469
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/The_Complete_Cancer_Cleanse.html?hl=&id=Zjgz0IQAXLMC\"\n
470
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
471
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
472
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
473
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
474
+ {\n \"isAvailable\": true,\n \"acsTokenLink\": \"http://books.google.com/books/download/The_Complete_Cancer_Cleanse-sample-epub.acsm?id=Zjgz0IQAXLMC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
475
+ \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
476
+ \"http://books.google.com/books/reader?id=Zjgz0IQAXLMC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
477
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
478
+ \"Cherie Calbom, "The Juice Lady," therapist John Calbom, and Michael
479
+ Mahaffey, a twenty-year cancer survivor, present a unique, multi-disciplinary
480
+ approach to fighting cancer.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
481
+ \ \"id\": \"ObIaHaielsoC\",\n \"etag\": \"1/eO/946Sy8\",\n \"selfLink\":
482
+ \"https://www.googleapis.com/books/v1/volumes/ObIaHaielsoC\",\n \"volumeInfo\":
483
+ {\n \"title\": \"Apoptosis, Senescence and Cancer\",\n \"authors\":
484
+ [\n \"David A. Gewirtz\",\n \"Shawn E. Holt\",\n \"Steven Grant\"\n
485
+ \ ],\n \"publisher\": \"Humana Press\",\n \"publishedDate\": \"2007-12-17\",\n
486
+ \ \"description\": \"This book provides insight into established practices
487
+ and research into apoptosis and senescence. The volume thoroughly examines
488
+ novel and emerging techniques and research in the fields of cell death pathways,
489
+ senescence growth arrest, drugs and resistance, DNA damage response, and other
490
+ topics that still hold mysteries for researchers. In total, this volume provides
491
+ basic scientists and clinicians with a deeper and more complete understanding
492
+ of the cellular responses of malignancies which may determine the effectiveness
493
+ of treatment, both in the initial stages of the disease as well as in disease
494
+ recurrence.\",\n \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n
495
+ \ \"identifier\": \"1588295273\"\n },\n {\n \"type\": \"ISBN_13\",\n
496
+ \ \"identifier\": \"9781588295279\"\n }\n ],\n \"pageCount\":
497
+ 599,\n \"printType\": \"BOOK\",\n \"contentVersion\": \"preview-1.0.0\",\n
498
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=ObIaHaielsoC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
499
+ \ \"thumbnail\": \"http://bks8.books.google.com/books?id=ObIaHaielsoC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
500
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=ObIaHaielsoC&printsec=frontcover&dq=cancer&hl=&cd=54&source=gbs_api\",\n
501
+ \ \"infoLink\": \"http://books.google.com/books?id=ObIaHaielsoC&dq=cancer&hl=&source=gbs_api\",\n
502
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Apoptosis_Senescence_and_Cancer.html?hl=&id=ObIaHaielsoC\"\n
503
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
504
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
505
+ 169.0,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
506
+ 135.2,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=ObIaHaielsoC&dq=cancer&hl=&buy=&source=gbs_api\"\n
507
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
508
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
509
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": false\n
510
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
511
+ \"http://books.google.com/books/download/Apoptosis_Senescence_and_Cancer-sample-pdf.acsm?id=ObIaHaielsoC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
512
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=ObIaHaielsoC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
513
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
514
+ \"In total, this volume provides basic scientists and clinicians with a deeper
515
+ and more complete understanding of the cellular responses of malignancies
516
+ which may determine the effectiveness of treatment, both in the initial stages
517
+ of the ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
518
+ \"nvMZ0IY6NSAC\",\n \"etag\": \"TXlNzkn23Og\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/nvMZ0IY6NSAC\",\n
519
+ \ \"volumeInfo\": {\n \"title\": \"Breast Cancer, a Heterogeneous Disease
520
+ Entity\",\n \"subtitle\": \"The Very Early Stages\",\n \"authors\":
521
+ [\n \"Zsuzsanna Kahán\"\n ],\n \"publisher\": \"Springer Verlag\",\n
522
+ \ \"publishedDate\": \"2011-03-07\",\n \"description\": \"Aimed at raising
523
+ awareness of the need for a fresh approach to tackling breast cancer, this
524
+ volume is founded on data collected on early breast cancer over the past two
525
+ decades and includes contributions from experts in all the fields involved
526
+ in treatment.\",\n \"industryIdentifiers\": [\n {\n \"type\":
527
+ \"ISBN_10\",\n \"identifier\": \"9400704887\"\n },\n {\n \"type\":
528
+ \"ISBN_13\",\n \"identifier\": \"9789400704886\"\n }\n ],\n \"pageCount\":
529
+ 313,\n \"printType\": \"BOOK\",\n \"categories\": [\n \"Medical\"\n
530
+ \ ],\n \"contentVersion\": \"0.0.2.0.preview.3\",\n \"imageLinks\":
531
+ {\n \"smallThumbnail\": \"http://bks2.books.google.com/books?id=nvMZ0IY6NSAC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
532
+ \ \"thumbnail\": \"http://bks2.books.google.com/books?id=nvMZ0IY6NSAC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
533
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=nvMZ0IY6NSAC&printsec=frontcover&dq=cancer&hl=&cd=55&source=gbs_api\",\n
534
+ \ \"infoLink\": \"http://books.google.com/books?id=nvMZ0IY6NSAC&dq=cancer&hl=&source=gbs_api\",\n
535
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Breast_Cancer_a_Heterogeneous_Disease_En.html?hl=&id=nvMZ0IY6NSAC\"\n
536
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
537
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
538
+ 209.0,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
539
+ 167.2,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=nvMZ0IY6NSAC&dq=cancer&hl=&buy=&source=gbs_api\"\n
540
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
541
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
542
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
543
+ \ \"acsTokenLink\": \"http://books.google.com/books/download/Breast_Cancer_a_Heterogeneous_Disease_En-sample-epub.acsm?id=nvMZ0IY6NSAC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
544
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
545
+ \"http://books.google.com/books/download/Breast_Cancer_a_Heterogeneous_Disease_En-sample-pdf.acsm?id=nvMZ0IY6NSAC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
546
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=nvMZ0IY6NSAC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
547
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
548
+ \"Aimed at raising awareness of the need for a fresh approach to tackling
549
+ breast cancer, this volume is founded on data collected on early breast cancer
550
+ over the past two decades and includes contributions from experts in all the
551
+ fields ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
552
+ \"-Em3jb360iUC\",\n \"etag\": \"xwwS9EgNB+M\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/-Em3jb360iUC\",\n
553
+ \ \"volumeInfo\": {\n \"title\": \"Cancer Care\",\n \"subtitle\": \"Prevention,
554
+ Treatment and Palliation\",\n \"authors\": [\n \"Jill David\"\n ],\n
555
+ \ \"publisher\": \"Nelson Thornes\",\n \"publishedDate\": \"1995\",\n
556
+ \ \"description\": \"Main subjects which are addressed include: Health promotion:
557
+ Screening for cancer. Surgery, chemotherapy, biological and hormonal therapy
558
+ and radiotherapy. Palliative care, continuing care and rehabilitation.\",\n
559
+ \ \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n \"identifier\":
560
+ \"0412554305\"\n },\n {\n \"type\": \"ISBN_13\",\n \"identifier\":
561
+ \"9780412554308\"\n }\n ],\n \"pageCount\": 433,\n \"printType\":
562
+ \"BOOK\",\n \"contentVersion\": \"1.1.1.0.preview.0\",\n \"imageLinks\":
563
+ {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=-Em3jb360iUC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
564
+ \ \"thumbnail\": \"http://bks8.books.google.com/books?id=-Em3jb360iUC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
565
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=-Em3jb360iUC&printsec=frontcover&dq=cancer&hl=&cd=56&source=gbs_api\",\n
566
+ \ \"infoLink\": \"http://books.google.com/books?id=-Em3jb360iUC&dq=cancer&hl=&source=gbs_api\",\n
567
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer_Care.html?hl=&id=-Em3jb360iUC\"\n
568
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
569
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
570
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
571
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
572
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
573
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=-Em3jb360iUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
574
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
575
+ \"Main subjects which are addressed include: Health promotion: Screening for
576
+ cancer. Surgery, chemotherapy, biological and hormonal therapy and radiotherapy.
577
+ Palliative care, continuing care and rehabilitation.\"\n }\n },\n {\n
578
+ \ \"kind\": \"books#volume\",\n \"id\": \"WfwIXyUXP0IC\",\n \"etag\":
579
+ \"1wWH9s69Ipo\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/WfwIXyUXP0IC\",\n
580
+ \ \"volumeInfo\": {\n \"title\": \"Breast Cancer\",\n \"subtitle\":
581
+ \"Collaborative Management\",\n \"authors\": [\n \"Jay Kenneth Harness\"\n
582
+ \ ],\n \"publisher\": \"CRC Press\",\n \"publishedDate\": \"1988-04-01\",\n
583
+ \ \"description\": \"Prominent specialists champion the view that contemporary
584
+ management of breast, or any, cancer requires the partnership of physicians,
585
+ nurses, social workers, and all others whose special training and talents
586
+ should be integrated for treating the whole patient. Here is the book that
587
+ sets forth the rationale for this nationwide emerging concept and the means
588
+ for accomplishing it. Dealing with total care of the whole patient, this new
589
+ classic text is written by and for surgeons, radiation oncologists, medical
590
+ oncologist, pathologists, radiologists, nurses, social workers, and others
591
+ involved with the care and management of the patient with breast cancer.\",\n
592
+ \ \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n \"identifier\":
593
+ \"0873711068\"\n },\n {\n \"type\": \"ISBN_13\",\n \"identifier\":
594
+ \"9780873711067\"\n }\n ],\n \"pageCount\": 390,\n \"printType\":
595
+ \"BOOK\",\n \"contentVersion\": \"0.0.1.0.preview.0\",\n \"imageLinks\":
596
+ {\n \"smallThumbnail\": \"http://bks5.books.google.com/books?id=WfwIXyUXP0IC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
597
+ \ \"thumbnail\": \"http://bks5.books.google.com/books?id=WfwIXyUXP0IC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
598
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=WfwIXyUXP0IC&printsec=frontcover&dq=cancer&hl=&cd=57&source=gbs_api\",\n
599
+ \ \"infoLink\": \"http://books.google.com/books?id=WfwIXyUXP0IC&dq=cancer&hl=&source=gbs_api\",\n
600
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Breast_Cancer.html?hl=&id=WfwIXyUXP0IC\"\n
601
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
602
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
603
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
604
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
605
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
606
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=WfwIXyUXP0IC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
607
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
608
+ \"Dealing with total care of the whole patient, this new classic text is written
609
+ by and for surgeons, radiation oncologists, medical oncologist, pathologists,
610
+ radiologists, nurses, social workers, and others involved with the care and
611
+ ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"EXhI9_NtGmUC\",\n
612
+ \ \"etag\": \"0ovsuDdNz4Y\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/EXhI9_NtGmUC\",\n
613
+ \ \"volumeInfo\": {\n \"title\": \"Cancer Epigenetics\",\n \"subtitle\":
614
+ \"Biomolecular Therapeutics in Human Cancer\",\n \"authors\": [\n \"Antonio
615
+ Giordano\"\n ],\n \"publisher\": \"Wiley-Blackwell\",\n \"publishedDate\":
616
+ \"2011-08-23\",\n \"description\": \"\\\"Biomolecular Therapeutics for
617
+ Human Cancer is the only resource to focus on biomolecular approaches to cancer
618
+ therapy. Its presentation of the latest research in cancer biology reflects
619
+ the interdisciplinary nature of the field and aims to facilitate collaboration
620
+ between the basic, translational, and clinical sciences\\\"--Provided by publisher.\",\n
621
+ \ \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n \"identifier\":
622
+ \"0471710962\"\n },\n {\n \"type\": \"ISBN_13\",\n \"identifier\":
623
+ \"9780471710967\"\n }\n ],\n \"pageCount\": 436,\n \"printType\":
624
+ \"BOOK\",\n \"categories\": [\n \"Medical\"\n ],\n \"contentVersion\":
625
+ \"0.4.4.0.preview.3\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=EXhI9_NtGmUC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
626
+ \ \"thumbnail\": \"http://bks3.books.google.com/books?id=EXhI9_NtGmUC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
627
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=EXhI9_NtGmUC&printsec=frontcover&dq=cancer&hl=&cd=58&source=gbs_api\",\n
628
+ \ \"infoLink\": \"http://books.google.com/books?id=EXhI9_NtGmUC&dq=cancer&hl=&source=gbs_api\",\n
629
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer_Epigenetics.html?hl=&id=EXhI9_NtGmUC\"\n
630
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
631
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
632
+ 119.99,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n
633
+ \ \"amount\": 119.99,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\":
634
+ \"http://books.google.com/books?id=EXhI9_NtGmUC&dq=cancer&hl=&buy=&source=gbs_api\"\n
635
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
636
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
637
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
638
+ \ \"acsTokenLink\": \"http://books.google.com/books/download/Cancer_Epigenetics-sample-epub.acsm?id=EXhI9_NtGmUC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
639
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
640
+ \"http://books.google.com/books/download/Cancer_Epigenetics-sample-pdf.acsm?id=EXhI9_NtGmUC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
641
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=EXhI9_NtGmUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
642
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
643
+ \"This volume is divided into five sections: Epigenetics and cell cycle Epigenetics
644
+ and cell development, senescence and differentiation Epigenetics and gene
645
+ transcription Epigenetics and cancer Epigenetics and anticancer drug development
646
+ and ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"EShBPBgt_TgC\",\n
647
+ \ \"etag\": \"0VxVjIdjHJ4\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/EShBPBgt_TgC\",\n
648
+ \ \"volumeInfo\": {\n \"title\": \"Breast Cancer\",\n \"subtitle\":
649
+ \"Real Questions, Real Answers\",\n \"authors\": [\n \"David Chan\"\n
650
+ \ ],\n \"publisher\": \"Da Capo Press\",\n \"publishedDate\": \"2006-01-02\",\n
651
+ \ \"description\": \"A comprehensive and up-to-date guide to the numerous
652
+ aspects of breast cancer, from its diagnosis and treatments to its therapies
653
+ and the complex emotional factors associated with the disease, is organized
654
+ in a question-and-answer format for easy reference and is complemented by
655
+ a glossary of terms and an appendix of resources.\",\n \"industryIdentifiers\":
656
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"156924314X\"\n
657
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781569243145\"\n
658
+ \ }\n ],\n \"pageCount\": 264,\n \"printType\": \"BOOK\",\n \"averageRating\":
659
+ 4.5,\n \"ratingsCount\": 3,\n \"contentVersion\": \"1.0.0.0.preview.0\",\n
660
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks1.books.google.com/books?id=EShBPBgt_TgC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
661
+ \ \"thumbnail\": \"http://bks1.books.google.com/books?id=EShBPBgt_TgC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
662
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=EShBPBgt_TgC&printsec=frontcover&dq=cancer&hl=&cd=59&source=gbs_api\",\n
663
+ \ \"infoLink\": \"http://books.google.com/books?id=EShBPBgt_TgC&dq=cancer&hl=&source=gbs_api\",\n
664
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Breast_Cancer.html?hl=&id=EShBPBgt_TgC\"\n
665
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
666
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
667
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
668
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
669
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
670
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=EShBPBgt_TgC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
671
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
672
+ \"A comprehensive and up-to-date guide to the numerous aspects of breast cancer,
673
+ from its diagnosis and treatments to its therapies and the complex emotional
674
+ factors associated with the disease, is organized in a question-and-answer
675
+ format ...\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
676
+ \"L7GGVLdRLyIC\",\n \"etag\": \"ehMbIe48cqc\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/L7GGVLdRLyIC\",\n
677
+ \ \"volumeInfo\": {\n \"title\": \"Bone Cancer\",\n \"subtitle\": \"Current
678
+ and Emerging Trends in Detection and Treatment\",\n \"authors\": [\n \"Heather
679
+ Hasan\"\n ],\n \"publisher\": \"The Rosen Publishing Group\",\n \"publishedDate\":
680
+ \"2009-01-01\",\n \"description\": \"A discussion of bone cancer and treatments
681
+ for it.\",\n \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n
682
+ \ \"identifier\": \"1435850106\"\n },\n {\n \"type\": \"ISBN_13\",\n
683
+ \ \"identifier\": \"9781435850101\"\n }\n ],\n \"pageCount\":
684
+ 64,\n \"printType\": \"BOOK\",\n \"categories\": [\n \"Medical\"\n
685
+ \ ],\n \"contentVersion\": \"0.0.1.0.preview.2\",\n \"imageLinks\":
686
+ {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=L7GGVLdRLyIC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
687
+ \ \"thumbnail\": \"http://bks3.books.google.com/books?id=L7GGVLdRLyIC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
688
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=L7GGVLdRLyIC&printsec=frontcover&dq=cancer&hl=&cd=60&source=gbs_api\",\n
689
+ \ \"infoLink\": \"http://books.google.com/books?id=L7GGVLdRLyIC&dq=cancer&hl=&source=gbs_api\",\n
690
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Bone_Cancer.html?hl=&id=L7GGVLdRLyIC\"\n
691
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
692
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
693
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
694
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
695
+ {\n \"isAvailable\": true,\n \"acsTokenLink\": \"http://books.google.com/books/download/Bone_Cancer-sample-epub.acsm?id=L7GGVLdRLyIC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
696
+ \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
697
+ \"http://books.google.com/books/reader?id=L7GGVLdRLyIC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
698
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
699
+ \"A discussion of bone cancer and treatments for it.\"\n }\n }\n ]\n}\n"
700
+ http_version:
701
+ recorded_at: Mon, 06 Aug 2012 15:27:13 GMT
702
+ recorded_with: VCR 2.2.4