gcloud 0.0.7 → 0.1.0

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 (998) hide show
  1. checksums.yaml +7 -0
  2. data/{packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/ext/__init__.py → .gemtest} +0 -0
  3. data/.rubocop.yml +17 -0
  4. data/CHANGELOG.md +5 -0
  5. data/CONTRIBUTING.md +93 -0
  6. data/LICENSE +201 -674
  7. data/Manifest.txt +66 -0
  8. data/README.md +110 -12
  9. data/Rakefile +34 -3
  10. data/gcloud.gemspec +48 -17
  11. data/lib/gcloud.rb +8 -0
  12. data/lib/gcloud/backoff.rb +115 -0
  13. data/lib/gcloud/credentials.rb +124 -0
  14. data/lib/gcloud/datastore.rb +66 -0
  15. data/lib/gcloud/datastore/connection.rb +177 -0
  16. data/lib/gcloud/datastore/credentials.rb +41 -0
  17. data/lib/gcloud/datastore/dataset.rb +259 -0
  18. data/lib/gcloud/datastore/dataset/lookup_results.rb +60 -0
  19. data/lib/gcloud/datastore/dataset/query_results.rb +87 -0
  20. data/lib/gcloud/datastore/entity.rb +257 -0
  21. data/lib/gcloud/datastore/errors.rb +65 -0
  22. data/lib/gcloud/datastore/key.rb +151 -0
  23. data/lib/gcloud/datastore/properties.rb +102 -0
  24. data/lib/gcloud/datastore/proto.rb +253 -0
  25. data/lib/gcloud/datastore/query.rb +189 -0
  26. data/lib/gcloud/datastore/transaction.rb +116 -0
  27. data/lib/gcloud/proto/datastore_v1.pb.rb +377 -0
  28. data/lib/gcloud/storage.rb +78 -0
  29. data/lib/gcloud/storage/bucket.rb +254 -0
  30. data/lib/gcloud/storage/bucket/acl.rb +311 -0
  31. data/lib/gcloud/storage/bucket/list.rb +45 -0
  32. data/lib/gcloud/storage/connection.rb +358 -0
  33. data/{packages/gsutil/gslib/commands/__init__.py → lib/gcloud/storage/credentials.rb} +13 -2
  34. data/lib/gcloud/storage/errors.rb +78 -0
  35. data/lib/gcloud/storage/file.rb +287 -0
  36. data/lib/gcloud/storage/file/acl.rb +172 -0
  37. data/lib/gcloud/storage/file/list.rb +52 -0
  38. data/lib/gcloud/storage/file/verifier.rb +65 -0
  39. data/lib/gcloud/storage/project.rb +119 -0
  40. data/lib/gcloud/version.rb +5 -0
  41. data/{packages/gsutil/gslib/tests/testcase/__init__.py → rakelib/console.rake} +14 -4
  42. data/{packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version.py → rakelib/manifest.rake} +11 -4
  43. data/{packages/gsutil/gslib/addlhelp/__init__.py → rakelib/proto.rake} +4 -2
  44. data/{packages/gsutil/gslib/tests/__init__.py → rakelib/rubocop.rake} +4 -2
  45. data/rakelib/test.rake +144 -0
  46. data/test/gcloud/datastore/proto/test_cursor.rb +36 -0
  47. data/test/gcloud/datastore/proto/test_direction.rb +60 -0
  48. data/test/gcloud/datastore/proto/test_operator.rb +76 -0
  49. data/test/gcloud/datastore/proto/test_value.rb +231 -0
  50. data/test/gcloud/datastore/test_connection.rb +93 -0
  51. data/test/gcloud/datastore/test_credentials.rb +38 -0
  52. data/test/gcloud/datastore/test_dataset.rb +413 -0
  53. data/test/gcloud/datastore/test_entity.rb +161 -0
  54. data/test/gcloud/datastore/test_entity_exclude.rb +225 -0
  55. data/test/gcloud/datastore/test_key.rb +189 -0
  56. data/test/gcloud/datastore/test_query.rb +271 -0
  57. data/test/gcloud/datastore/test_transaction.rb +121 -0
  58. data/test/gcloud/storage/test_backoff.rb +127 -0
  59. data/test/gcloud/storage/test_bucket.rb +270 -0
  60. data/test/gcloud/storage/test_bucket_acl.rb +253 -0
  61. data/test/gcloud/storage/test_default_acl.rb +256 -0
  62. data/test/gcloud/storage/test_file.rb +221 -0
  63. data/test/gcloud/storage/test_file_acl.rb +367 -0
  64. data/test/gcloud/storage/test_project.rb +180 -0
  65. data/{packages/gsutil/gslib/no_op_auth_plugin.py → test/gcloud/storage/test_storage.rb} +14 -15
  66. data/test/gcloud/storage/test_verifier.rb +62 -0
  67. data/test/gcloud/test_version.rb +8 -0
  68. data/test/helper.rb +91 -0
  69. metadata +259 -1020
  70. data.tar.gz.sig +0 -2
  71. data/CHANGELOG +0 -14
  72. data/Makefile +0 -13
  73. data/Manifest +0 -937
  74. data/TODO +0 -2
  75. data/bin/gcloud +0 -7
  76. data/bin/gcutil-symlink +0 -53
  77. data/bin/gsutil-symlink +0 -377
  78. data/init.rb +0 -3
  79. data/packages/README +0 -6
  80. data/packages/gcutil-1.7.1.tar.gz +0 -0
  81. data/packages/gcutil-1.7.1/CHANGELOG +0 -197
  82. data/packages/gcutil-1.7.1/LICENSE +0 -202
  83. data/packages/gcutil-1.7.1/VERSION +0 -1
  84. data/packages/gcutil-1.7.1/gcutil +0 -53
  85. data/packages/gcutil-1.7.1/lib/google_api_python_client/LICENSE +0 -23
  86. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/__init__.py +0 -1
  87. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/__init__.pyc +0 -0
  88. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/discovery.py +0 -743
  89. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/discovery.pyc +0 -0
  90. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/errors.py +0 -123
  91. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/errors.pyc +0 -0
  92. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/http.py +0 -1443
  93. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/http.pyc +0 -0
  94. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/mimeparse.py +0 -172
  95. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/mimeparse.pyc +0 -0
  96. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/model.py +0 -385
  97. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/model.pyc +0 -0
  98. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/schema.py +0 -303
  99. data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/schema.pyc +0 -0
  100. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/__init__.py +0 -1
  101. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/__init__.pyc +0 -0
  102. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/anyjson.py +0 -32
  103. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/anyjson.pyc +0 -0
  104. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/appengine.py +0 -528
  105. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/client.py +0 -1139
  106. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/client.pyc +0 -0
  107. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/clientsecrets.py +0 -105
  108. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/clientsecrets.pyc +0 -0
  109. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/crypt.py +0 -244
  110. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/crypt.pyc +0 -0
  111. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/django_orm.py +0 -124
  112. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/file.py +0 -107
  113. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/locked_file.py +0 -343
  114. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/locked_file.pyc +0 -0
  115. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/multistore_file.py +0 -379
  116. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/multistore_file.pyc +0 -0
  117. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/tools.py +0 -174
  118. data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/tools.pyc +0 -0
  119. data/packages/gcutil-1.7.1/lib/google_api_python_client/uritemplate/__init__.py +0 -147
  120. data/packages/gcutil-1.7.1/lib/google_api_python_client/uritemplate/__init__.pyc +0 -0
  121. data/packages/gcutil-1.7.1/lib/google_apputils/LICENSE +0 -202
  122. data/packages/gcutil-1.7.1/lib/google_apputils/google/__init__.py +0 -3
  123. data/packages/gcutil-1.7.1/lib/google_apputils/google/__init__.pyc +0 -0
  124. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/__init__.py +0 -3
  125. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/__init__.pyc +0 -0
  126. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/app.py +0 -356
  127. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/app.pyc +0 -0
  128. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/appcommands.py +0 -783
  129. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/appcommands.pyc +0 -0
  130. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/basetest.py +0 -1260
  131. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/datelib.py +0 -421
  132. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/debug.py +0 -60
  133. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/file_util.py +0 -181
  134. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/resources.py +0 -67
  135. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/run_script_module.py +0 -217
  136. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/setup_command.py +0 -159
  137. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/shellutil.py +0 -49
  138. data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/stopwatch.py +0 -204
  139. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/__init__.py +0 -0
  140. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/__init__.pyc +0 -0
  141. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper.py +0 -140
  142. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper.pyc +0 -0
  143. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper_test.py +0 -149
  144. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth.py +0 -130
  145. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth.pyc +0 -0
  146. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth_test.py +0 -75
  147. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds.py +0 -128
  148. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds.pyc +0 -0
  149. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds_test.py +0 -111
  150. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base.py +0 -1808
  151. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base.pyc +0 -0
  152. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base_test.py +0 -1651
  153. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta13.json +0 -2851
  154. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta14.json +0 -3361
  155. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds.py +0 -342
  156. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds.pyc +0 -0
  157. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds_test.py +0 -474
  158. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds.py +0 -344
  159. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds.pyc +0 -0
  160. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds_test.py +0 -231
  161. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/flags_cache.py +0 -274
  162. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/flags_cache.pyc +0 -0
  163. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil +0 -89
  164. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil_logging.py +0 -69
  165. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil_logging.pyc +0 -0
  166. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds.py +0 -262
  167. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds.pyc +0 -0
  168. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds_test.py +0 -172
  169. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds.py +0 -1506
  170. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds.pyc +0 -0
  171. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds_test.py +0 -1904
  172. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds.py +0 -91
  173. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds.pyc +0 -0
  174. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds_test.py +0 -56
  175. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds.py +0 -106
  176. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds.pyc +0 -0
  177. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds_test.py +0 -59
  178. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata.py +0 -96
  179. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata.pyc +0 -0
  180. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_lib.py +0 -357
  181. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_lib.pyc +0 -0
  182. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_test.py +0 -84
  183. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_api.py +0 -420
  184. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_metadata.py +0 -58
  185. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds.py +0 -824
  186. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds.pyc +0 -0
  187. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds_test.py +0 -307
  188. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds.py +0 -178
  189. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds.pyc +0 -0
  190. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds_test.py +0 -133
  191. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds.py +0 -181
  192. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds.pyc +0 -0
  193. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds_test.py +0 -196
  194. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/path_initializer.py +0 -38
  195. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/path_initializer.pyc +0 -0
  196. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds.py +0 -173
  197. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds.pyc +0 -0
  198. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds_test.py +0 -111
  199. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes.py +0 -61
  200. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes.pyc +0 -0
  201. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes_test.py +0 -50
  202. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds.py +0 -276
  203. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds.pyc +0 -0
  204. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds_test.py +0 -260
  205. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys.py +0 -266
  206. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys.pyc +0 -0
  207. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys_test.py +0 -128
  208. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/table_formatter.py +0 -563
  209. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/table_formatter.pyc +0 -0
  210. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool.py +0 -188
  211. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool.pyc +0 -0
  212. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool_test.py +0 -88
  213. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils.py +0 -208
  214. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils.pyc +0 -0
  215. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils_test.py +0 -193
  216. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version.pyc +0 -0
  217. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker.py +0 -246
  218. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker.pyc +0 -0
  219. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker_test.py +0 -271
  220. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds.py +0 -151
  221. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds.pyc +0 -0
  222. data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds_test.py +0 -60
  223. data/packages/gcutil-1.7.1/lib/httplib2/LICENSE +0 -21
  224. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/__init__.py +0 -1630
  225. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/__init__.pyc +0 -0
  226. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/cacerts.txt +0 -714
  227. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/iri2uri.py +0 -110
  228. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/iri2uri.pyc +0 -0
  229. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/socks.py +0 -438
  230. data/packages/gcutil-1.7.1/lib/httplib2/httplib2/socks.pyc +0 -0
  231. data/packages/gcutil-1.7.1/lib/iso8601/LICENSE +0 -20
  232. data/packages/gcutil-1.7.1/lib/iso8601/iso8601/__init__.py +0 -1
  233. data/packages/gcutil-1.7.1/lib/iso8601/iso8601/__init__.pyc +0 -0
  234. data/packages/gcutil-1.7.1/lib/iso8601/iso8601/iso8601.py +0 -102
  235. data/packages/gcutil-1.7.1/lib/iso8601/iso8601/iso8601.pyc +0 -0
  236. data/packages/gcutil-1.7.1/lib/iso8601/iso8601/test_iso8601.py +0 -111
  237. data/packages/gcutil-1.7.1/lib/python_gflags/AUTHORS +0 -2
  238. data/packages/gcutil-1.7.1/lib/python_gflags/LICENSE +0 -28
  239. data/packages/gcutil-1.7.1/lib/python_gflags/gflags.py +0 -2862
  240. data/packages/gcutil-1.7.1/lib/python_gflags/gflags.pyc +0 -0
  241. data/packages/gcutil-1.7.1/lib/python_gflags/gflags2man.py +0 -544
  242. data/packages/gcutil-1.7.1/lib/python_gflags/gflags_validators.py +0 -187
  243. data/packages/gcutil-1.7.1/lib/python_gflags/gflags_validators.pyc +0 -0
  244. data/packages/gsutil.tar.gz +0 -0
  245. data/packages/gsutil/CHECKSUM +0 -1
  246. data/packages/gsutil/COPYING +0 -202
  247. data/packages/gsutil/LICENSE.third_party +0 -295
  248. data/packages/gsutil/MANIFEST.in +0 -5
  249. data/packages/gsutil/README +0 -38
  250. data/packages/gsutil/README.pkg +0 -49
  251. data/packages/gsutil/ReleaseNotes.txt +0 -780
  252. data/packages/gsutil/VERSION +0 -1
  253. data/packages/gsutil/boto/Changelog.rst +0 -35
  254. data/packages/gsutil/boto/LICENSE +0 -18
  255. data/packages/gsutil/boto/MANIFEST.in +0 -12
  256. data/packages/gsutil/boto/README.rst +0 -163
  257. data/packages/gsutil/boto/bin/asadmin +0 -290
  258. data/packages/gsutil/boto/bin/bundle_image +0 -27
  259. data/packages/gsutil/boto/bin/cfadmin +0 -108
  260. data/packages/gsutil/boto/bin/cq +0 -89
  261. data/packages/gsutil/boto/bin/cwutil +0 -140
  262. data/packages/gsutil/boto/bin/elbadmin +0 -284
  263. data/packages/gsutil/boto/bin/fetch_file +0 -43
  264. data/packages/gsutil/boto/bin/glacier +0 -154
  265. data/packages/gsutil/boto/bin/instance_events +0 -145
  266. data/packages/gsutil/boto/bin/kill_instance +0 -35
  267. data/packages/gsutil/boto/bin/launch_instance +0 -252
  268. data/packages/gsutil/boto/bin/list_instances +0 -90
  269. data/packages/gsutil/boto/bin/lss3 +0 -77
  270. data/packages/gsutil/boto/bin/mturk +0 -465
  271. data/packages/gsutil/boto/bin/pyami_sendmail +0 -52
  272. data/packages/gsutil/boto/bin/route53 +0 -205
  273. data/packages/gsutil/boto/bin/s3put +0 -374
  274. data/packages/gsutil/boto/bin/sdbadmin +0 -194
  275. data/packages/gsutil/boto/bin/taskadmin +0 -116
  276. data/packages/gsutil/boto/boto/__init__.py +0 -793
  277. data/packages/gsutil/boto/boto/__init__.pyc +0 -0
  278. data/packages/gsutil/boto/boto/auth.py +0 -682
  279. data/packages/gsutil/boto/boto/auth.pyc +0 -0
  280. data/packages/gsutil/boto/boto/auth_handler.py +0 -58
  281. data/packages/gsutil/boto/boto/auth_handler.pyc +0 -0
  282. data/packages/gsutil/boto/boto/beanstalk/__init__.py +0 -65
  283. data/packages/gsutil/boto/boto/beanstalk/exception.py +0 -64
  284. data/packages/gsutil/boto/boto/beanstalk/layer1.py +0 -1153
  285. data/packages/gsutil/boto/boto/beanstalk/response.py +0 -703
  286. data/packages/gsutil/boto/boto/beanstalk/wrapper.py +0 -29
  287. data/packages/gsutil/boto/boto/cacerts/__init__.py +0 -22
  288. data/packages/gsutil/boto/boto/cacerts/__init__.pyc +0 -0
  289. data/packages/gsutil/boto/boto/cacerts/cacerts.txt +0 -633
  290. data/packages/gsutil/boto/boto/cloudformation/__init__.py +0 -68
  291. data/packages/gsutil/boto/boto/cloudformation/connection.py +0 -364
  292. data/packages/gsutil/boto/boto/cloudformation/stack.py +0 -360
  293. data/packages/gsutil/boto/boto/cloudformation/template.py +0 -43
  294. data/packages/gsutil/boto/boto/cloudfront/__init__.py +0 -324
  295. data/packages/gsutil/boto/boto/cloudfront/distribution.py +0 -745
  296. data/packages/gsutil/boto/boto/cloudfront/exception.py +0 -26
  297. data/packages/gsutil/boto/boto/cloudfront/identity.py +0 -122
  298. data/packages/gsutil/boto/boto/cloudfront/invalidation.py +0 -216
  299. data/packages/gsutil/boto/boto/cloudfront/logging.py +0 -38
  300. data/packages/gsutil/boto/boto/cloudfront/object.py +0 -48
  301. data/packages/gsutil/boto/boto/cloudfront/origin.py +0 -150
  302. data/packages/gsutil/boto/boto/cloudfront/signers.py +0 -60
  303. data/packages/gsutil/boto/boto/cloudsearch/__init__.py +0 -45
  304. data/packages/gsutil/boto/boto/cloudsearch/document.py +0 -265
  305. data/packages/gsutil/boto/boto/cloudsearch/domain.py +0 -394
  306. data/packages/gsutil/boto/boto/cloudsearch/layer1.py +0 -738
  307. data/packages/gsutil/boto/boto/cloudsearch/layer2.py +0 -67
  308. data/packages/gsutil/boto/boto/cloudsearch/optionstatus.py +0 -248
  309. data/packages/gsutil/boto/boto/cloudsearch/search.py +0 -365
  310. data/packages/gsutil/boto/boto/cloudsearch/sourceattribute.py +0 -75
  311. data/packages/gsutil/boto/boto/compat.py +0 -28
  312. data/packages/gsutil/boto/boto/compat.pyc +0 -0
  313. data/packages/gsutil/boto/boto/connection.py +0 -1081
  314. data/packages/gsutil/boto/boto/connection.pyc +0 -0
  315. data/packages/gsutil/boto/boto/contrib/__init__.py +0 -22
  316. data/packages/gsutil/boto/boto/contrib/ymlmessage.py +0 -52
  317. data/packages/gsutil/boto/boto/core/README +0 -58
  318. data/packages/gsutil/boto/boto/core/__init__.py +0 -23
  319. data/packages/gsutil/boto/boto/core/auth.py +0 -78
  320. data/packages/gsutil/boto/boto/core/credentials.py +0 -154
  321. data/packages/gsutil/boto/boto/core/dictresponse.py +0 -178
  322. data/packages/gsutil/boto/boto/core/service.py +0 -67
  323. data/packages/gsutil/boto/boto/datapipeline/__init__.py +0 -0
  324. data/packages/gsutil/boto/boto/datapipeline/exceptions.py +0 -42
  325. data/packages/gsutil/boto/boto/datapipeline/layer1.py +0 -546
  326. data/packages/gsutil/boto/boto/dynamodb/__init__.py +0 -66
  327. data/packages/gsutil/boto/boto/dynamodb/batch.py +0 -262
  328. data/packages/gsutil/boto/boto/dynamodb/condition.py +0 -170
  329. data/packages/gsutil/boto/boto/dynamodb/exceptions.py +0 -64
  330. data/packages/gsutil/boto/boto/dynamodb/item.py +0 -196
  331. data/packages/gsutil/boto/boto/dynamodb/layer1.py +0 -575
  332. data/packages/gsutil/boto/boto/dynamodb/layer2.py +0 -798
  333. data/packages/gsutil/boto/boto/dynamodb/schema.py +0 -112
  334. data/packages/gsutil/boto/boto/dynamodb/table.py +0 -540
  335. data/packages/gsutil/boto/boto/dynamodb/types.py +0 -326
  336. data/packages/gsutil/boto/boto/ec2/__init__.py +0 -96
  337. data/packages/gsutil/boto/boto/ec2/address.py +0 -103
  338. data/packages/gsutil/boto/boto/ec2/autoscale/__init__.py +0 -781
  339. data/packages/gsutil/boto/boto/ec2/autoscale/activity.py +0 -74
  340. data/packages/gsutil/boto/boto/ec2/autoscale/group.py +0 -337
  341. data/packages/gsutil/boto/boto/ec2/autoscale/instance.py +0 -60
  342. data/packages/gsutil/boto/boto/ec2/autoscale/launchconfig.py +0 -209
  343. data/packages/gsutil/boto/boto/ec2/autoscale/policy.py +0 -166
  344. data/packages/gsutil/boto/boto/ec2/autoscale/request.py +0 -38
  345. data/packages/gsutil/boto/boto/ec2/autoscale/scheduled.py +0 -60
  346. data/packages/gsutil/boto/boto/ec2/autoscale/tag.py +0 -84
  347. data/packages/gsutil/boto/boto/ec2/blockdevicemapping.py +0 -141
  348. data/packages/gsutil/boto/boto/ec2/bundleinstance.py +0 -78
  349. data/packages/gsutil/boto/boto/ec2/buyreservation.py +0 -84
  350. data/packages/gsutil/boto/boto/ec2/cloudwatch/__init__.py +0 -603
  351. data/packages/gsutil/boto/boto/ec2/cloudwatch/alarm.py +0 -316
  352. data/packages/gsutil/boto/boto/ec2/cloudwatch/datapoint.py +0 -40
  353. data/packages/gsutil/boto/boto/ec2/cloudwatch/dimension.py +0 -38
  354. data/packages/gsutil/boto/boto/ec2/cloudwatch/listelement.py +0 -31
  355. data/packages/gsutil/boto/boto/ec2/cloudwatch/metric.py +0 -175
  356. data/packages/gsutil/boto/boto/ec2/connection.py +0 -3409
  357. data/packages/gsutil/boto/boto/ec2/ec2object.py +0 -107
  358. data/packages/gsutil/boto/boto/ec2/elb/__init__.py +0 -553
  359. data/packages/gsutil/boto/boto/ec2/elb/healthcheck.py +0 -89
  360. data/packages/gsutil/boto/boto/ec2/elb/instancestate.py +0 -62
  361. data/packages/gsutil/boto/boto/ec2/elb/listelement.py +0 -36
  362. data/packages/gsutil/boto/boto/ec2/elb/listener.py +0 -75
  363. data/packages/gsutil/boto/boto/ec2/elb/loadbalancer.py +0 -324
  364. data/packages/gsutil/boto/boto/ec2/elb/policies.py +0 -89
  365. data/packages/gsutil/boto/boto/ec2/elb/securitygroup.py +0 -38
  366. data/packages/gsutil/boto/boto/ec2/group.py +0 -39
  367. data/packages/gsutil/boto/boto/ec2/image.py +0 -350
  368. data/packages/gsutil/boto/boto/ec2/instance.py +0 -661
  369. data/packages/gsutil/boto/boto/ec2/instanceinfo.py +0 -51
  370. data/packages/gsutil/boto/boto/ec2/instancestatus.py +0 -207
  371. data/packages/gsutil/boto/boto/ec2/keypair.py +0 -113
  372. data/packages/gsutil/boto/boto/ec2/launchspecification.py +0 -105
  373. data/packages/gsutil/boto/boto/ec2/networkinterface.py +0 -247
  374. data/packages/gsutil/boto/boto/ec2/placementgroup.py +0 -51
  375. data/packages/gsutil/boto/boto/ec2/regioninfo.py +0 -34
  376. data/packages/gsutil/boto/boto/ec2/reservedinstance.py +0 -227
  377. data/packages/gsutil/boto/boto/ec2/securitygroup.py +0 -357
  378. data/packages/gsutil/boto/boto/ec2/snapshot.py +0 -170
  379. data/packages/gsutil/boto/boto/ec2/spotdatafeedsubscription.py +0 -63
  380. data/packages/gsutil/boto/boto/ec2/spotinstancerequest.py +0 -188
  381. data/packages/gsutil/boto/boto/ec2/spotpricehistory.py +0 -55
  382. data/packages/gsutil/boto/boto/ec2/tag.py +0 -87
  383. data/packages/gsutil/boto/boto/ec2/vmtype.py +0 -58
  384. data/packages/gsutil/boto/boto/ec2/volume.py +0 -293
  385. data/packages/gsutil/boto/boto/ec2/volumestatus.py +0 -200
  386. data/packages/gsutil/boto/boto/ec2/zone.py +0 -80
  387. data/packages/gsutil/boto/boto/ecs/__init__.py +0 -90
  388. data/packages/gsutil/boto/boto/ecs/item.py +0 -153
  389. data/packages/gsutil/boto/boto/elasticache/__init__.py +0 -62
  390. data/packages/gsutil/boto/boto/elasticache/layer1.py +0 -1252
  391. data/packages/gsutil/boto/boto/elastictranscoder/__init__.py +0 -62
  392. data/packages/gsutil/boto/boto/elastictranscoder/exceptions.py +0 -46
  393. data/packages/gsutil/boto/boto/elastictranscoder/layer1.py +0 -509
  394. data/packages/gsutil/boto/boto/emr/__init__.py +0 -73
  395. data/packages/gsutil/boto/boto/emr/bootstrap_action.py +0 -44
  396. data/packages/gsutil/boto/boto/emr/connection.py +0 -531
  397. data/packages/gsutil/boto/boto/emr/emrobject.py +0 -176
  398. data/packages/gsutil/boto/boto/emr/instance_group.py +0 -43
  399. data/packages/gsutil/boto/boto/emr/step.py +0 -281
  400. data/packages/gsutil/boto/boto/exception.py +0 -476
  401. data/packages/gsutil/boto/boto/exception.pyc +0 -0
  402. data/packages/gsutil/boto/boto/file/README +0 -49
  403. data/packages/gsutil/boto/boto/file/__init__.py +0 -28
  404. data/packages/gsutil/boto/boto/file/bucket.py +0 -112
  405. data/packages/gsutil/boto/boto/file/connection.py +0 -33
  406. data/packages/gsutil/boto/boto/file/key.py +0 -199
  407. data/packages/gsutil/boto/boto/file/simpleresultset.py +0 -30
  408. data/packages/gsutil/boto/boto/fps/__init__.py +0 -21
  409. data/packages/gsutil/boto/boto/fps/connection.py +0 -369
  410. data/packages/gsutil/boto/boto/fps/exception.py +0 -344
  411. data/packages/gsutil/boto/boto/fps/response.py +0 -175
  412. data/packages/gsutil/boto/boto/glacier/__init__.py +0 -57
  413. data/packages/gsutil/boto/boto/glacier/concurrent.py +0 -409
  414. data/packages/gsutil/boto/boto/glacier/exceptions.py +0 -58
  415. data/packages/gsutil/boto/boto/glacier/job.py +0 -152
  416. data/packages/gsutil/boto/boto/glacier/layer1.py +0 -637
  417. data/packages/gsutil/boto/boto/glacier/layer2.py +0 -93
  418. data/packages/gsutil/boto/boto/glacier/response.py +0 -48
  419. data/packages/gsutil/boto/boto/glacier/utils.py +0 -163
  420. data/packages/gsutil/boto/boto/glacier/vault.py +0 -387
  421. data/packages/gsutil/boto/boto/glacier/writer.py +0 -242
  422. data/packages/gsutil/boto/boto/gs/__init__.py +0 -22
  423. data/packages/gsutil/boto/boto/gs/__init__.pyc +0 -0
  424. data/packages/gsutil/boto/boto/gs/acl.py +0 -304
  425. data/packages/gsutil/boto/boto/gs/acl.pyc +0 -0
  426. data/packages/gsutil/boto/boto/gs/bucket.py +0 -870
  427. data/packages/gsutil/boto/boto/gs/bucket.pyc +0 -0
  428. data/packages/gsutil/boto/boto/gs/bucketlistresultset.py +0 -64
  429. data/packages/gsutil/boto/boto/gs/bucketlistresultset.pyc +0 -0
  430. data/packages/gsutil/boto/boto/gs/connection.py +0 -103
  431. data/packages/gsutil/boto/boto/gs/connection.pyc +0 -0
  432. data/packages/gsutil/boto/boto/gs/cors.py +0 -169
  433. data/packages/gsutil/boto/boto/gs/cors.pyc +0 -0
  434. data/packages/gsutil/boto/boto/gs/key.py +0 -704
  435. data/packages/gsutil/boto/boto/gs/key.pyc +0 -0
  436. data/packages/gsutil/boto/boto/gs/resumable_upload_handler.py +0 -659
  437. data/packages/gsutil/boto/boto/gs/resumable_upload_handler.pyc +0 -0
  438. data/packages/gsutil/boto/boto/gs/user.py +0 -54
  439. data/packages/gsutil/boto/boto/gs/user.pyc +0 -0
  440. data/packages/gsutil/boto/boto/handler.py +0 -44
  441. data/packages/gsutil/boto/boto/handler.pyc +0 -0
  442. data/packages/gsutil/boto/boto/https_connection.py +0 -124
  443. data/packages/gsutil/boto/boto/https_connection.pyc +0 -0
  444. data/packages/gsutil/boto/boto/iam/__init__.py +0 -74
  445. data/packages/gsutil/boto/boto/iam/connection.py +0 -1317
  446. data/packages/gsutil/boto/boto/iam/summarymap.py +0 -42
  447. data/packages/gsutil/boto/boto/jsonresponse.py +0 -163
  448. data/packages/gsutil/boto/boto/jsonresponse.pyc +0 -0
  449. data/packages/gsutil/boto/boto/manage/__init__.py +0 -23
  450. data/packages/gsutil/boto/boto/manage/cmdshell.py +0 -241
  451. data/packages/gsutil/boto/boto/manage/propget.py +0 -64
  452. data/packages/gsutil/boto/boto/manage/server.py +0 -556
  453. data/packages/gsutil/boto/boto/manage/task.py +0 -175
  454. data/packages/gsutil/boto/boto/manage/test_manage.py +0 -34
  455. data/packages/gsutil/boto/boto/manage/volume.py +0 -420
  456. data/packages/gsutil/boto/boto/mashups/__init__.py +0 -23
  457. data/packages/gsutil/boto/boto/mashups/interactive.py +0 -97
  458. data/packages/gsutil/boto/boto/mashups/iobject.py +0 -115
  459. data/packages/gsutil/boto/boto/mashups/order.py +0 -211
  460. data/packages/gsutil/boto/boto/mashups/server.py +0 -395
  461. data/packages/gsutil/boto/boto/mturk/__init__.py +0 -23
  462. data/packages/gsutil/boto/boto/mturk/connection.py +0 -1027
  463. data/packages/gsutil/boto/boto/mturk/layoutparam.py +0 -55
  464. data/packages/gsutil/boto/boto/mturk/notification.py +0 -103
  465. data/packages/gsutil/boto/boto/mturk/price.py +0 -48
  466. data/packages/gsutil/boto/boto/mturk/qualification.py +0 -137
  467. data/packages/gsutil/boto/boto/mturk/question.py +0 -455
  468. data/packages/gsutil/boto/boto/mws/__init__.py +0 -21
  469. data/packages/gsutil/boto/boto/mws/connection.py +0 -813
  470. data/packages/gsutil/boto/boto/mws/exception.py +0 -75
  471. data/packages/gsutil/boto/boto/mws/response.py +0 -655
  472. data/packages/gsutil/boto/boto/plugin.py +0 -90
  473. data/packages/gsutil/boto/boto/plugin.pyc +0 -0
  474. data/packages/gsutil/boto/boto/provider.py +0 -337
  475. data/packages/gsutil/boto/boto/provider.pyc +0 -0
  476. data/packages/gsutil/boto/boto/pyami/__init__.py +0 -22
  477. data/packages/gsutil/boto/boto/pyami/__init__.pyc +0 -0
  478. data/packages/gsutil/boto/boto/pyami/bootstrap.py +0 -134
  479. data/packages/gsutil/boto/boto/pyami/config.py +0 -229
  480. data/packages/gsutil/boto/boto/pyami/config.pyc +0 -0
  481. data/packages/gsutil/boto/boto/pyami/copybot.cfg +0 -60
  482. data/packages/gsutil/boto/boto/pyami/copybot.py +0 -97
  483. data/packages/gsutil/boto/boto/pyami/helloworld.py +0 -28
  484. data/packages/gsutil/boto/boto/pyami/installers/__init__.py +0 -64
  485. data/packages/gsutil/boto/boto/pyami/installers/ubuntu/__init__.py +0 -22
  486. data/packages/gsutil/boto/boto/pyami/installers/ubuntu/apache.py +0 -43
  487. data/packages/gsutil/boto/boto/pyami/installers/ubuntu/ebs.py +0 -238
  488. data/packages/gsutil/boto/boto/pyami/installers/ubuntu/installer.py +0 -96
  489. data/packages/gsutil/boto/boto/pyami/installers/ubuntu/mysql.py +0 -109
  490. data/packages/gsutil/boto/boto/pyami/installers/ubuntu/trac.py +0 -139
  491. data/packages/gsutil/boto/boto/pyami/launch_ami.py +0 -178
  492. data/packages/gsutil/boto/boto/pyami/scriptbase.py +0 -44
  493. data/packages/gsutil/boto/boto/pyami/startup.py +0 -60
  494. data/packages/gsutil/boto/boto/rds/__init__.py +0 -1194
  495. data/packages/gsutil/boto/boto/rds/dbinstance.py +0 -357
  496. data/packages/gsutil/boto/boto/rds/dbsecuritygroup.py +0 -177
  497. data/packages/gsutil/boto/boto/rds/dbsnapshot.py +0 -108
  498. data/packages/gsutil/boto/boto/rds/event.py +0 -49
  499. data/packages/gsutil/boto/boto/rds/parametergroup.py +0 -201
  500. data/packages/gsutil/boto/boto/rds/regioninfo.py +0 -32
  501. data/packages/gsutil/boto/boto/regioninfo.py +0 -63
  502. data/packages/gsutil/boto/boto/regioninfo.pyc +0 -0
  503. data/packages/gsutil/boto/boto/resultset.py +0 -169
  504. data/packages/gsutil/boto/boto/resultset.pyc +0 -0
  505. data/packages/gsutil/boto/boto/roboto/__init__.py +0 -1
  506. data/packages/gsutil/boto/boto/roboto/awsqueryrequest.py +0 -504
  507. data/packages/gsutil/boto/boto/roboto/awsqueryservice.py +0 -121
  508. data/packages/gsutil/boto/boto/roboto/param.py +0 -147
  509. data/packages/gsutil/boto/boto/route53/__init__.py +0 -75
  510. data/packages/gsutil/boto/boto/route53/connection.py +0 -403
  511. data/packages/gsutil/boto/boto/route53/exception.py +0 -27
  512. data/packages/gsutil/boto/boto/route53/hostedzone.py +0 -56
  513. data/packages/gsutil/boto/boto/route53/record.py +0 -306
  514. data/packages/gsutil/boto/boto/route53/status.py +0 -42
  515. data/packages/gsutil/boto/boto/route53/zone.py +0 -412
  516. data/packages/gsutil/boto/boto/s3/__init__.py +0 -84
  517. data/packages/gsutil/boto/boto/s3/__init__.pyc +0 -0
  518. data/packages/gsutil/boto/boto/s3/acl.py +0 -164
  519. data/packages/gsutil/boto/boto/s3/acl.pyc +0 -0
  520. data/packages/gsutil/boto/boto/s3/bucket.py +0 -1634
  521. data/packages/gsutil/boto/boto/s3/bucket.pyc +0 -0
  522. data/packages/gsutil/boto/boto/s3/bucketlistresultset.py +0 -139
  523. data/packages/gsutil/boto/boto/s3/bucketlistresultset.pyc +0 -0
  524. data/packages/gsutil/boto/boto/s3/bucketlogging.py +0 -83
  525. data/packages/gsutil/boto/boto/s3/bucketlogging.pyc +0 -0
  526. data/packages/gsutil/boto/boto/s3/connection.py +0 -540
  527. data/packages/gsutil/boto/boto/s3/connection.pyc +0 -0
  528. data/packages/gsutil/boto/boto/s3/cors.py +0 -210
  529. data/packages/gsutil/boto/boto/s3/cors.pyc +0 -0
  530. data/packages/gsutil/boto/boto/s3/deletemarker.py +0 -55
  531. data/packages/gsutil/boto/boto/s3/deletemarker.pyc +0 -0
  532. data/packages/gsutil/boto/boto/s3/key.py +0 -1712
  533. data/packages/gsutil/boto/boto/s3/key.pyc +0 -0
  534. data/packages/gsutil/boto/boto/s3/keyfile.py +0 -134
  535. data/packages/gsutil/boto/boto/s3/keyfile.pyc +0 -0
  536. data/packages/gsutil/boto/boto/s3/lifecycle.py +0 -231
  537. data/packages/gsutil/boto/boto/s3/lifecycle.pyc +0 -0
  538. data/packages/gsutil/boto/boto/s3/multidelete.py +0 -138
  539. data/packages/gsutil/boto/boto/s3/multidelete.pyc +0 -0
  540. data/packages/gsutil/boto/boto/s3/multipart.py +0 -315
  541. data/packages/gsutil/boto/boto/s3/multipart.pyc +0 -0
  542. data/packages/gsutil/boto/boto/s3/prefix.py +0 -42
  543. data/packages/gsutil/boto/boto/s3/prefix.pyc +0 -0
  544. data/packages/gsutil/boto/boto/s3/resumable_download_handler.py +0 -339
  545. data/packages/gsutil/boto/boto/s3/resumable_download_handler.pyc +0 -0
  546. data/packages/gsutil/boto/boto/s3/tagging.py +0 -71
  547. data/packages/gsutil/boto/boto/s3/tagging.pyc +0 -0
  548. data/packages/gsutil/boto/boto/s3/user.py +0 -49
  549. data/packages/gsutil/boto/boto/s3/user.pyc +0 -0
  550. data/packages/gsutil/boto/boto/s3/website.py +0 -237
  551. data/packages/gsutil/boto/boto/s3/website.pyc +0 -0
  552. data/packages/gsutil/boto/boto/sdb/__init__.py +0 -67
  553. data/packages/gsutil/boto/boto/sdb/connection.py +0 -617
  554. data/packages/gsutil/boto/boto/sdb/db/__init__.py +0 -20
  555. data/packages/gsutil/boto/boto/sdb/db/blob.py +0 -75
  556. data/packages/gsutil/boto/boto/sdb/db/key.py +0 -59
  557. data/packages/gsutil/boto/boto/sdb/db/manager/__init__.py +0 -85
  558. data/packages/gsutil/boto/boto/sdb/db/manager/sdbmanager.py +0 -732
  559. data/packages/gsutil/boto/boto/sdb/db/manager/xmlmanager.py +0 -517
  560. data/packages/gsutil/boto/boto/sdb/db/model.py +0 -294
  561. data/packages/gsutil/boto/boto/sdb/db/property.py +0 -703
  562. data/packages/gsutil/boto/boto/sdb/db/query.py +0 -85
  563. data/packages/gsutil/boto/boto/sdb/db/sequence.py +0 -226
  564. data/packages/gsutil/boto/boto/sdb/db/test_db.py +0 -231
  565. data/packages/gsutil/boto/boto/sdb/domain.py +0 -377
  566. data/packages/gsutil/boto/boto/sdb/item.py +0 -181
  567. data/packages/gsutil/boto/boto/sdb/queryresultset.py +0 -92
  568. data/packages/gsutil/boto/boto/sdb/regioninfo.py +0 -32
  569. data/packages/gsutil/boto/boto/services/__init__.py +0 -23
  570. data/packages/gsutil/boto/boto/services/bs.py +0 -179
  571. data/packages/gsutil/boto/boto/services/message.py +0 -58
  572. data/packages/gsutil/boto/boto/services/result.py +0 -136
  573. data/packages/gsutil/boto/boto/services/service.py +0 -161
  574. data/packages/gsutil/boto/boto/services/servicedef.py +0 -91
  575. data/packages/gsutil/boto/boto/services/sonofmmm.cfg +0 -43
  576. data/packages/gsutil/boto/boto/services/sonofmmm.py +0 -81
  577. data/packages/gsutil/boto/boto/services/submit.py +0 -88
  578. data/packages/gsutil/boto/boto/ses/__init__.py +0 -54
  579. data/packages/gsutil/boto/boto/ses/connection.py +0 -521
  580. data/packages/gsutil/boto/boto/ses/exceptions.py +0 -77
  581. data/packages/gsutil/boto/boto/sns/__init__.py +0 -78
  582. data/packages/gsutil/boto/boto/sns/connection.py +0 -431
  583. data/packages/gsutil/boto/boto/sqs/__init__.py +0 -56
  584. data/packages/gsutil/boto/boto/sqs/attributes.py +0 -46
  585. data/packages/gsutil/boto/boto/sqs/batchresults.py +0 -95
  586. data/packages/gsutil/boto/boto/sqs/connection.py +0 -417
  587. data/packages/gsutil/boto/boto/sqs/jsonmessage.py +0 -43
  588. data/packages/gsutil/boto/boto/sqs/message.py +0 -253
  589. data/packages/gsutil/boto/boto/sqs/queue.py +0 -478
  590. data/packages/gsutil/boto/boto/sqs/regioninfo.py +0 -32
  591. data/packages/gsutil/boto/boto/storage_uri.py +0 -835
  592. data/packages/gsutil/boto/boto/storage_uri.pyc +0 -0
  593. data/packages/gsutil/boto/boto/sts/__init__.py +0 -55
  594. data/packages/gsutil/boto/boto/sts/connection.py +0 -207
  595. data/packages/gsutil/boto/boto/sts/credentials.py +0 -215
  596. data/packages/gsutil/boto/boto/swf/__init__.py +0 -60
  597. data/packages/gsutil/boto/boto/swf/exceptions.py +0 -44
  598. data/packages/gsutil/boto/boto/swf/layer1.py +0 -1512
  599. data/packages/gsutil/boto/boto/swf/layer1_decisions.py +0 -287
  600. data/packages/gsutil/boto/boto/swf/layer2.py +0 -342
  601. data/packages/gsutil/boto/boto/utils.py +0 -927
  602. data/packages/gsutil/boto/boto/utils.pyc +0 -0
  603. data/packages/gsutil/boto/boto/vpc/__init__.py +0 -910
  604. data/packages/gsutil/boto/boto/vpc/customergateway.py +0 -54
  605. data/packages/gsutil/boto/boto/vpc/dhcpoptions.py +0 -72
  606. data/packages/gsutil/boto/boto/vpc/internetgateway.py +0 -72
  607. data/packages/gsutil/boto/boto/vpc/routetable.py +0 -109
  608. data/packages/gsutil/boto/boto/vpc/subnet.py +0 -57
  609. data/packages/gsutil/boto/boto/vpc/vpc.py +0 -54
  610. data/packages/gsutil/boto/boto/vpc/vpnconnection.py +0 -60
  611. data/packages/gsutil/boto/boto/vpc/vpngateway.py +0 -83
  612. data/packages/gsutil/boto/docs/BotoCheatSheet.pdf +0 -0
  613. data/packages/gsutil/boto/docs/Makefile +0 -89
  614. data/packages/gsutil/boto/docs/make.bat +0 -113
  615. data/packages/gsutil/boto/docs/source/_templates/layout.html +0 -3
  616. data/packages/gsutil/boto/docs/source/autoscale_tut.rst +0 -220
  617. data/packages/gsutil/boto/docs/source/boto_config_tut.rst +0 -125
  618. data/packages/gsutil/boto/docs/source/boto_theme/static/boto.css_t +0 -239
  619. data/packages/gsutil/boto/docs/source/boto_theme/static/pygments.css +0 -61
  620. data/packages/gsutil/boto/docs/source/boto_theme/theme.conf +0 -3
  621. data/packages/gsutil/boto/docs/source/cloudfront_tut.rst +0 -196
  622. data/packages/gsutil/boto/docs/source/cloudsearch_tut.rst +0 -411
  623. data/packages/gsutil/boto/docs/source/cloudwatch_tut.rst +0 -116
  624. data/packages/gsutil/boto/docs/source/conf.py +0 -32
  625. data/packages/gsutil/boto/docs/source/contributing.rst +0 -204
  626. data/packages/gsutil/boto/docs/source/documentation.rst +0 -59
  627. data/packages/gsutil/boto/docs/source/dynamodb_tut.rst +0 -339
  628. data/packages/gsutil/boto/docs/source/ec2_tut.rst +0 -86
  629. data/packages/gsutil/boto/docs/source/elb_tut.rst +0 -257
  630. data/packages/gsutil/boto/docs/source/emr_tut.rst +0 -108
  631. data/packages/gsutil/boto/docs/source/index.rst +0 -146
  632. data/packages/gsutil/boto/docs/source/rds_tut.rst +0 -108
  633. data/packages/gsutil/boto/docs/source/ref/autoscale.rst +0 -62
  634. data/packages/gsutil/boto/docs/source/ref/beanstalk.rst +0 -26
  635. data/packages/gsutil/boto/docs/source/ref/boto.rst +0 -47
  636. data/packages/gsutil/boto/docs/source/ref/cloudformation.rst +0 -34
  637. data/packages/gsutil/boto/docs/source/ref/cloudfront.rst +0 -68
  638. data/packages/gsutil/boto/docs/source/ref/cloudsearch.rst +0 -59
  639. data/packages/gsutil/boto/docs/source/ref/cloudwatch.rst +0 -27
  640. data/packages/gsutil/boto/docs/source/ref/contrib.rst +0 -32
  641. data/packages/gsutil/boto/docs/source/ref/datapipeline.rst +0 -26
  642. data/packages/gsutil/boto/docs/source/ref/dynamodb.rst +0 -61
  643. data/packages/gsutil/boto/docs/source/ref/ec2.rst +0 -140
  644. data/packages/gsutil/boto/docs/source/ref/ecs.rst +0 -19
  645. data/packages/gsutil/boto/docs/source/ref/elasticache.rst +0 -19
  646. data/packages/gsutil/boto/docs/source/ref/elastictranscoder.rst +0 -26
  647. data/packages/gsutil/boto/docs/source/ref/elb.rst +0 -47
  648. data/packages/gsutil/boto/docs/source/ref/emr.rst +0 -34
  649. data/packages/gsutil/boto/docs/source/ref/file.rst +0 -34
  650. data/packages/gsutil/boto/docs/source/ref/fps.rst +0 -19
  651. data/packages/gsutil/boto/docs/source/ref/glacier.rst +0 -63
  652. data/packages/gsutil/boto/docs/source/ref/gs.rst +0 -72
  653. data/packages/gsutil/boto/docs/source/ref/iam.rst +0 -27
  654. data/packages/gsutil/boto/docs/source/ref/index.rst +0 -40
  655. data/packages/gsutil/boto/docs/source/ref/manage.rst +0 -47
  656. data/packages/gsutil/boto/docs/source/ref/mturk.rst +0 -54
  657. data/packages/gsutil/boto/docs/source/ref/mws.rst +0 -33
  658. data/packages/gsutil/boto/docs/source/ref/pyami.rst +0 -103
  659. data/packages/gsutil/boto/docs/source/ref/rds.rst +0 -47
  660. data/packages/gsutil/boto/docs/source/ref/route53.rst +0 -34
  661. data/packages/gsutil/boto/docs/source/ref/s3.rst +0 -111
  662. data/packages/gsutil/boto/docs/source/ref/sdb.rst +0 -45
  663. data/packages/gsutil/boto/docs/source/ref/sdb_db.rst +0 -83
  664. data/packages/gsutil/boto/docs/source/ref/services.rst +0 -61
  665. data/packages/gsutil/boto/docs/source/ref/ses.rst +0 -21
  666. data/packages/gsutil/boto/docs/source/ref/sns.rst +0 -17
  667. data/packages/gsutil/boto/docs/source/ref/sqs.rst +0 -61
  668. data/packages/gsutil/boto/docs/source/ref/sts.rst +0 -25
  669. data/packages/gsutil/boto/docs/source/ref/swf.rst +0 -22
  670. data/packages/gsutil/boto/docs/source/ref/vpc.rst +0 -54
  671. data/packages/gsutil/boto/docs/source/s3_tut.rst +0 -450
  672. data/packages/gsutil/boto/docs/source/security_groups.rst +0 -82
  673. data/packages/gsutil/boto/docs/source/ses_tut.rst +0 -171
  674. data/packages/gsutil/boto/docs/source/simpledb_tut.rst +0 -188
  675. data/packages/gsutil/boto/docs/source/sqs_tut.rst +0 -246
  676. data/packages/gsutil/boto/docs/source/vpc_tut.rst +0 -100
  677. data/packages/gsutil/boto/pylintrc +0 -305
  678. data/packages/gsutil/boto/requirements.txt +0 -10
  679. data/packages/gsutil/boto/setup.py +0 -89
  680. data/packages/gsutil/boto/tests/__init__.py +0 -20
  681. data/packages/gsutil/boto/tests/db/test_lists.py +0 -96
  682. data/packages/gsutil/boto/tests/db/test_password.py +0 -128
  683. data/packages/gsutil/boto/tests/db/test_query.py +0 -152
  684. data/packages/gsutil/boto/tests/db/test_sequence.py +0 -109
  685. data/packages/gsutil/boto/tests/devpay/__init__.py +0 -0
  686. data/packages/gsutil/boto/tests/devpay/test_s3.py +0 -181
  687. data/packages/gsutil/boto/tests/fps/__init__.py +0 -0
  688. data/packages/gsutil/boto/tests/fps/test.py +0 -100
  689. data/packages/gsutil/boto/tests/fps/test_verify_signature.py +0 -12
  690. data/packages/gsutil/boto/tests/integration/__init__.py +0 -0
  691. data/packages/gsutil/boto/tests/integration/beanstalk/test_wrapper.py +0 -209
  692. data/packages/gsutil/boto/tests/integration/cloudformation/__init__.py +0 -21
  693. data/packages/gsutil/boto/tests/integration/cloudformation/test_cert_verification.py +0 -40
  694. data/packages/gsutil/boto/tests/integration/cloudformation/test_connection.py +0 -110
  695. data/packages/gsutil/boto/tests/integration/cloudsearch/__init__.py +0 -21
  696. data/packages/gsutil/boto/tests/integration/cloudsearch/test_cert_verification.py +0 -40
  697. data/packages/gsutil/boto/tests/integration/datapipeline/test_layer1.py +0 -122
  698. data/packages/gsutil/boto/tests/integration/dynamodb/__init__.py +0 -20
  699. data/packages/gsutil/boto/tests/integration/dynamodb/test_cert_verification.py +0 -40
  700. data/packages/gsutil/boto/tests/integration/dynamodb/test_layer1.py +0 -266
  701. data/packages/gsutil/boto/tests/integration/dynamodb/test_layer2.py +0 -484
  702. data/packages/gsutil/boto/tests/integration/dynamodb/test_table.py +0 -84
  703. data/packages/gsutil/boto/tests/integration/ec2/__init__.py +0 -20
  704. data/packages/gsutil/boto/tests/integration/ec2/autoscale/__init__.py +0 -21
  705. data/packages/gsutil/boto/tests/integration/ec2/autoscale/test_cert_verification.py +0 -40
  706. data/packages/gsutil/boto/tests/integration/ec2/autoscale/test_connection.py +0 -167
  707. data/packages/gsutil/boto/tests/integration/ec2/cloudwatch/__init__.py +0 -20
  708. data/packages/gsutil/boto/tests/integration/ec2/cloudwatch/test_cert_verification.py +0 -40
  709. data/packages/gsutil/boto/tests/integration/ec2/cloudwatch/test_connection.py +0 -277
  710. data/packages/gsutil/boto/tests/integration/ec2/elb/__init__.py +0 -20
  711. data/packages/gsutil/boto/tests/integration/ec2/elb/test_cert_verification.py +0 -40
  712. data/packages/gsutil/boto/tests/integration/ec2/elb/test_connection.py +0 -130
  713. data/packages/gsutil/boto/tests/integration/ec2/test_cert_verification.py +0 -40
  714. data/packages/gsutil/boto/tests/integration/ec2/test_connection.py +0 -192
  715. data/packages/gsutil/boto/tests/integration/ec2/vpc/__init__.py +0 -0
  716. data/packages/gsutil/boto/tests/integration/ec2/vpc/test_connection.py +0 -95
  717. data/packages/gsutil/boto/tests/integration/elasticache/__init__.py +0 -0
  718. data/packages/gsutil/boto/tests/integration/elasticache/test_layer1.py +0 -67
  719. data/packages/gsutil/boto/tests/integration/elastictranscoder/__init__.py +0 -0
  720. data/packages/gsutil/boto/tests/integration/elastictranscoder/test_cert_verification.py +0 -35
  721. data/packages/gsutil/boto/tests/integration/elastictranscoder/test_layer1.py +0 -115
  722. data/packages/gsutil/boto/tests/integration/emr/__init__.py +0 -20
  723. data/packages/gsutil/boto/tests/integration/emr/test_cert_verification.py +0 -40
  724. data/packages/gsutil/boto/tests/integration/glacier/__init__.py +0 -22
  725. data/packages/gsutil/boto/tests/integration/glacier/test_cert_verification.py +0 -40
  726. data/packages/gsutil/boto/tests/integration/glacier/test_layer1.py +0 -44
  727. data/packages/gsutil/boto/tests/integration/glacier/test_layer2.py +0 -45
  728. data/packages/gsutil/boto/tests/integration/gs/__init__.py +0 -0
  729. data/packages/gsutil/boto/tests/integration/gs/cb_test_harness.py +0 -71
  730. data/packages/gsutil/boto/tests/integration/gs/test_basic.py +0 -379
  731. data/packages/gsutil/boto/tests/integration/gs/test_generation_conditionals.py +0 -399
  732. data/packages/gsutil/boto/tests/integration/gs/test_resumable_downloads.py +0 -358
  733. data/packages/gsutil/boto/tests/integration/gs/test_resumable_uploads.py +0 -525
  734. data/packages/gsutil/boto/tests/integration/gs/test_storage_uri.py +0 -125
  735. data/packages/gsutil/boto/tests/integration/gs/test_versioning.py +0 -268
  736. data/packages/gsutil/boto/tests/integration/gs/testcase.py +0 -116
  737. data/packages/gsutil/boto/tests/integration/gs/util.py +0 -63
  738. data/packages/gsutil/boto/tests/integration/iam/__init__.py +0 -20
  739. data/packages/gsutil/boto/tests/integration/iam/test_cert_verification.py +0 -40
  740. data/packages/gsutil/boto/tests/integration/mws/__init__.py +0 -0
  741. data/packages/gsutil/boto/tests/integration/mws/test.py +0 -100
  742. data/packages/gsutil/boto/tests/integration/rds/__init__.py +0 -21
  743. data/packages/gsutil/boto/tests/integration/rds/test_cert_verification.py +0 -40
  744. data/packages/gsutil/boto/tests/integration/route53/__init__.py +0 -20
  745. data/packages/gsutil/boto/tests/integration/route53/test_cert_verification.py +0 -40
  746. data/packages/gsutil/boto/tests/integration/route53/test_zone.py +0 -132
  747. data/packages/gsutil/boto/tests/integration/s3/__init__.py +0 -20
  748. data/packages/gsutil/boto/tests/integration/s3/mock_storage_service.py +0 -589
  749. data/packages/gsutil/boto/tests/integration/s3/other_cacerts.txt +0 -70
  750. data/packages/gsutil/boto/tests/integration/s3/test_bucket.py +0 -263
  751. data/packages/gsutil/boto/tests/integration/s3/test_cert_verification.py +0 -40
  752. data/packages/gsutil/boto/tests/integration/s3/test_connection.py +0 -245
  753. data/packages/gsutil/boto/tests/integration/s3/test_cors.py +0 -78
  754. data/packages/gsutil/boto/tests/integration/s3/test_encryption.py +0 -115
  755. data/packages/gsutil/boto/tests/integration/s3/test_https_cert_validation.py +0 -141
  756. data/packages/gsutil/boto/tests/integration/s3/test_key.py +0 -375
  757. data/packages/gsutil/boto/tests/integration/s3/test_mfa.py +0 -95
  758. data/packages/gsutil/boto/tests/integration/s3/test_multidelete.py +0 -181
  759. data/packages/gsutil/boto/tests/integration/s3/test_multipart.py +0 -139
  760. data/packages/gsutil/boto/tests/integration/s3/test_pool.py +0 -246
  761. data/packages/gsutil/boto/tests/integration/s3/test_versioning.py +0 -158
  762. data/packages/gsutil/boto/tests/integration/sdb/__init__.py +0 -20
  763. data/packages/gsutil/boto/tests/integration/sdb/test_cert_verification.py +0 -40
  764. data/packages/gsutil/boto/tests/integration/sdb/test_connection.py +0 -119
  765. data/packages/gsutil/boto/tests/integration/ses/__init__.py +0 -0
  766. data/packages/gsutil/boto/tests/integration/ses/test_cert_verification.py +0 -40
  767. data/packages/gsutil/boto/tests/integration/ses/test_connection.py +0 -38
  768. data/packages/gsutil/boto/tests/integration/sns/__init__.py +0 -20
  769. data/packages/gsutil/boto/tests/integration/sns/test_cert_verification.py +0 -40
  770. data/packages/gsutil/boto/tests/integration/sqs/__init__.py +0 -20
  771. data/packages/gsutil/boto/tests/integration/sqs/test_cert_verification.py +0 -40
  772. data/packages/gsutil/boto/tests/integration/sqs/test_connection.py +0 -217
  773. data/packages/gsutil/boto/tests/integration/sts/__init__.py +0 -20
  774. data/packages/gsutil/boto/tests/integration/sts/test_cert_verification.py +0 -40
  775. data/packages/gsutil/boto/tests/integration/sts/test_session_token.py +0 -65
  776. data/packages/gsutil/boto/tests/integration/swf/__init__.py +0 -0
  777. data/packages/gsutil/boto/tests/integration/swf/test_cert_verification.py +0 -40
  778. data/packages/gsutil/boto/tests/integration/swf/test_layer1.py +0 -246
  779. data/packages/gsutil/boto/tests/integration/swf/test_layer1_workflow_execution.py +0 -173
  780. data/packages/gsutil/boto/tests/mturk/__init__.py +0 -0
  781. data/packages/gsutil/boto/tests/mturk/_init_environment.py +0 -28
  782. data/packages/gsutil/boto/tests/mturk/all_tests.py +0 -24
  783. data/packages/gsutil/boto/tests/mturk/cleanup_tests.py +0 -47
  784. data/packages/gsutil/boto/tests/mturk/common.py +0 -45
  785. data/packages/gsutil/boto/tests/mturk/create_free_text_question_regex.doctest +0 -100
  786. data/packages/gsutil/boto/tests/mturk/create_hit.doctest +0 -92
  787. data/packages/gsutil/boto/tests/mturk/create_hit_binary.doctest +0 -94
  788. data/packages/gsutil/boto/tests/mturk/create_hit_external.py +0 -21
  789. data/packages/gsutil/boto/tests/mturk/create_hit_from_hit_type.doctest +0 -103
  790. data/packages/gsutil/boto/tests/mturk/create_hit_test.py +0 -21
  791. data/packages/gsutil/boto/tests/mturk/create_hit_with_qualifications.py +0 -16
  792. data/packages/gsutil/boto/tests/mturk/hit_persistence.py +0 -27
  793. data/packages/gsutil/boto/tests/mturk/mocks.py +0 -11
  794. data/packages/gsutil/boto/tests/mturk/reviewable_hits.doctest +0 -129
  795. data/packages/gsutil/boto/tests/mturk/run-doctest.py +0 -13
  796. data/packages/gsutil/boto/tests/mturk/search_hits.doctest +0 -16
  797. data/packages/gsutil/boto/tests/mturk/selenium_support.py +0 -61
  798. data/packages/gsutil/boto/tests/mturk/support.py +0 -7
  799. data/packages/gsutil/boto/tests/mturk/test_disable_hit.py +0 -11
  800. data/packages/gsutil/boto/tests/test.py +0 -59
  801. data/packages/gsutil/boto/tests/unit/__init__.py +0 -79
  802. data/packages/gsutil/boto/tests/unit/auth/__init__.py +0 -0
  803. data/packages/gsutil/boto/tests/unit/auth/test_sigv4.py +0 -73
  804. data/packages/gsutil/boto/tests/unit/beanstalk/__init__.py +0 -0
  805. data/packages/gsutil/boto/tests/unit/beanstalk/test_layer1.py +0 -128
  806. data/packages/gsutil/boto/tests/unit/cloudformation/__init__.py +0 -0
  807. data/packages/gsutil/boto/tests/unit/cloudformation/test_connection.py +0 -605
  808. data/packages/gsutil/boto/tests/unit/cloudformation/test_stack.py +0 -63
  809. data/packages/gsutil/boto/tests/unit/cloudfront/__init__.py +0 -0
  810. data/packages/gsutil/boto/tests/unit/cloudfront/test_invalidation_list.py +0 -113
  811. data/packages/gsutil/boto/tests/unit/cloudfront/test_signed_urls.py +0 -354
  812. data/packages/gsutil/boto/tests/unit/cloudsearch/__init__.py +0 -1
  813. data/packages/gsutil/boto/tests/unit/cloudsearch/test_connection.py +0 -241
  814. data/packages/gsutil/boto/tests/unit/cloudsearch/test_document.py +0 -324
  815. data/packages/gsutil/boto/tests/unit/cloudsearch/test_search.py +0 -325
  816. data/packages/gsutil/boto/tests/unit/dynamodb/__init__.py +0 -0
  817. data/packages/gsutil/boto/tests/unit/dynamodb/test_batch.py +0 -103
  818. data/packages/gsutil/boto/tests/unit/dynamodb/test_layer2.py +0 -119
  819. data/packages/gsutil/boto/tests/unit/dynamodb/test_types.py +0 -82
  820. data/packages/gsutil/boto/tests/unit/ec2/__init__.py +0 -0
  821. data/packages/gsutil/boto/tests/unit/ec2/autoscale/__init__.py +0 -0
  822. data/packages/gsutil/boto/tests/unit/ec2/autoscale/test_group.py +0 -162
  823. data/packages/gsutil/boto/tests/unit/ec2/test_address.py +0 -39
  824. data/packages/gsutil/boto/tests/unit/ec2/test_blockdevicemapping.py +0 -79
  825. data/packages/gsutil/boto/tests/unit/ec2/test_connection.py +0 -480
  826. data/packages/gsutil/boto/tests/unit/ec2/test_instance.py +0 -243
  827. data/packages/gsutil/boto/tests/unit/ec2/test_networkinterface.py +0 -140
  828. data/packages/gsutil/boto/tests/unit/ec2/test_volume.py +0 -248
  829. data/packages/gsutil/boto/tests/unit/emr/test_emr_responses.py +0 -373
  830. data/packages/gsutil/boto/tests/unit/glacier/__init__.py +0 -0
  831. data/packages/gsutil/boto/tests/unit/glacier/test_concurrent.py +0 -120
  832. data/packages/gsutil/boto/tests/unit/glacier/test_job.py +0 -60
  833. data/packages/gsutil/boto/tests/unit/glacier/test_layer1.py +0 -98
  834. data/packages/gsutil/boto/tests/unit/glacier/test_layer2.py +0 -266
  835. data/packages/gsutil/boto/tests/unit/glacier/test_utils.py +0 -116
  836. data/packages/gsutil/boto/tests/unit/glacier/test_vault.py +0 -100
  837. data/packages/gsutil/boto/tests/unit/glacier/test_writer.py +0 -185
  838. data/packages/gsutil/boto/tests/unit/provider/__init__.py +0 -0
  839. data/packages/gsutil/boto/tests/unit/provider/test_provider.py +0 -176
  840. data/packages/gsutil/boto/tests/unit/rds/__init__.py +0 -0
  841. data/packages/gsutil/boto/tests/unit/rds/test_connection.py +0 -131
  842. data/packages/gsutil/boto/tests/unit/s3/__init__.py +0 -0
  843. data/packages/gsutil/boto/tests/unit/s3/test_cors_configuration.py +0 -77
  844. data/packages/gsutil/boto/tests/unit/s3/test_key.py +0 -75
  845. data/packages/gsutil/boto/tests/unit/s3/test_keyfile.py +0 -101
  846. data/packages/gsutil/boto/tests/unit/s3/test_lifecycle.py +0 -97
  847. data/packages/gsutil/boto/tests/unit/s3/test_tagging.py +0 -47
  848. data/packages/gsutil/boto/tests/unit/s3/test_uri.py +0 -257
  849. data/packages/gsutil/boto/tests/unit/s3/test_website.py +0 -188
  850. data/packages/gsutil/boto/tests/unit/sns/__init__.py +0 -0
  851. data/packages/gsutil/boto/tests/unit/sns/test_connection.py +0 -99
  852. data/packages/gsutil/boto/tests/unit/sqs/__init__.py +0 -0
  853. data/packages/gsutil/boto/tests/unit/sqs/test_connection.py +0 -98
  854. data/packages/gsutil/boto/tests/unit/sqs/test_queue.py +0 -40
  855. data/packages/gsutil/boto/tests/unit/sts/test_connection.py +0 -74
  856. data/packages/gsutil/boto/tests/unit/test_connection.py +0 -60
  857. data/packages/gsutil/boto/tests/unit/utils/test_utils.py +0 -109
  858. data/packages/gsutil/boto/tox.ini +0 -8
  859. data/packages/gsutil/gslib/README +0 -5
  860. data/packages/gsutil/gslib/__init__.py +0 -22
  861. data/packages/gsutil/gslib/__init__.pyc +0 -0
  862. data/packages/gsutil/gslib/addlhelp/acls.py +0 -234
  863. data/packages/gsutil/gslib/addlhelp/anon.py +0 -57
  864. data/packages/gsutil/gslib/addlhelp/command_opts.py +0 -116
  865. data/packages/gsutil/gslib/addlhelp/dev.py +0 -139
  866. data/packages/gsutil/gslib/addlhelp/metadata.py +0 -186
  867. data/packages/gsutil/gslib/addlhelp/naming.py +0 -173
  868. data/packages/gsutil/gslib/addlhelp/prod.py +0 -160
  869. data/packages/gsutil/gslib/addlhelp/projects.py +0 -130
  870. data/packages/gsutil/gslib/addlhelp/subdirs.py +0 -110
  871. data/packages/gsutil/gslib/addlhelp/support.py +0 -86
  872. data/packages/gsutil/gslib/addlhelp/versioning.py +0 -242
  873. data/packages/gsutil/gslib/addlhelp/wildcards.py +0 -170
  874. data/packages/gsutil/gslib/bucket_listing_ref.py +0 -175
  875. data/packages/gsutil/gslib/bucket_listing_ref.pyc +0 -0
  876. data/packages/gsutil/gslib/command.py +0 -722
  877. data/packages/gsutil/gslib/command.pyc +0 -0
  878. data/packages/gsutil/gslib/command_runner.py +0 -101
  879. data/packages/gsutil/gslib/command_runner.pyc +0 -0
  880. data/packages/gsutil/gslib/commands/__init__.pyc +0 -0
  881. data/packages/gsutil/gslib/commands/cat.py +0 -131
  882. data/packages/gsutil/gslib/commands/cat.pyc +0 -0
  883. data/packages/gsutil/gslib/commands/chacl.py +0 -532
  884. data/packages/gsutil/gslib/commands/chacl.pyc +0 -0
  885. data/packages/gsutil/gslib/commands/config.py +0 -694
  886. data/packages/gsutil/gslib/commands/config.pyc +0 -0
  887. data/packages/gsutil/gslib/commands/cp.py +0 -1818
  888. data/packages/gsutil/gslib/commands/cp.pyc +0 -0
  889. data/packages/gsutil/gslib/commands/disablelogging.py +0 -101
  890. data/packages/gsutil/gslib/commands/disablelogging.pyc +0 -0
  891. data/packages/gsutil/gslib/commands/enablelogging.py +0 -149
  892. data/packages/gsutil/gslib/commands/enablelogging.pyc +0 -0
  893. data/packages/gsutil/gslib/commands/getacl.py +0 -82
  894. data/packages/gsutil/gslib/commands/getacl.pyc +0 -0
  895. data/packages/gsutil/gslib/commands/getcors.py +0 -121
  896. data/packages/gsutil/gslib/commands/getcors.pyc +0 -0
  897. data/packages/gsutil/gslib/commands/getdefacl.py +0 -86
  898. data/packages/gsutil/gslib/commands/getdefacl.pyc +0 -0
  899. data/packages/gsutil/gslib/commands/getlogging.py +0 -137
  900. data/packages/gsutil/gslib/commands/getlogging.pyc +0 -0
  901. data/packages/gsutil/gslib/commands/getversioning.py +0 -116
  902. data/packages/gsutil/gslib/commands/getversioning.pyc +0 -0
  903. data/packages/gsutil/gslib/commands/getwebcfg.py +0 -122
  904. data/packages/gsutil/gslib/commands/getwebcfg.pyc +0 -0
  905. data/packages/gsutil/gslib/commands/help.py +0 -218
  906. data/packages/gsutil/gslib/commands/help.pyc +0 -0
  907. data/packages/gsutil/gslib/commands/ls.py +0 -578
  908. data/packages/gsutil/gslib/commands/ls.pyc +0 -0
  909. data/packages/gsutil/gslib/commands/mb.py +0 -172
  910. data/packages/gsutil/gslib/commands/mb.pyc +0 -0
  911. data/packages/gsutil/gslib/commands/mv.py +0 -159
  912. data/packages/gsutil/gslib/commands/mv.pyc +0 -0
  913. data/packages/gsutil/gslib/commands/perfdiag.py +0 -903
  914. data/packages/gsutil/gslib/commands/perfdiag.pyc +0 -0
  915. data/packages/gsutil/gslib/commands/rb.py +0 -113
  916. data/packages/gsutil/gslib/commands/rb.pyc +0 -0
  917. data/packages/gsutil/gslib/commands/rm.py +0 -239
  918. data/packages/gsutil/gslib/commands/rm.pyc +0 -0
  919. data/packages/gsutil/gslib/commands/setacl.py +0 -138
  920. data/packages/gsutil/gslib/commands/setacl.pyc +0 -0
  921. data/packages/gsutil/gslib/commands/setcors.py +0 -145
  922. data/packages/gsutil/gslib/commands/setcors.pyc +0 -0
  923. data/packages/gsutil/gslib/commands/setdefacl.py +0 -105
  924. data/packages/gsutil/gslib/commands/setdefacl.pyc +0 -0
  925. data/packages/gsutil/gslib/commands/setmeta.py +0 -428
  926. data/packages/gsutil/gslib/commands/setmeta.pyc +0 -0
  927. data/packages/gsutil/gslib/commands/setversioning.py +0 -114
  928. data/packages/gsutil/gslib/commands/setversioning.pyc +0 -0
  929. data/packages/gsutil/gslib/commands/setwebcfg.py +0 -190
  930. data/packages/gsutil/gslib/commands/setwebcfg.pyc +0 -0
  931. data/packages/gsutil/gslib/commands/test.py +0 -228
  932. data/packages/gsutil/gslib/commands/test.pyc +0 -0
  933. data/packages/gsutil/gslib/commands/update.py +0 -305
  934. data/packages/gsutil/gslib/commands/update.pyc +0 -0
  935. data/packages/gsutil/gslib/commands/version.py +0 -150
  936. data/packages/gsutil/gslib/commands/version.pyc +0 -0
  937. data/packages/gsutil/gslib/exception.py +0 -76
  938. data/packages/gsutil/gslib/exception.pyc +0 -0
  939. data/packages/gsutil/gslib/help_provider.py +0 -81
  940. data/packages/gsutil/gslib/help_provider.pyc +0 -0
  941. data/packages/gsutil/gslib/name_expansion.py +0 -550
  942. data/packages/gsutil/gslib/name_expansion.pyc +0 -0
  943. data/packages/gsutil/gslib/plurality_checkable_iterator.py +0 -56
  944. data/packages/gsutil/gslib/plurality_checkable_iterator.pyc +0 -0
  945. data/packages/gsutil/gslib/project_id.py +0 -67
  946. data/packages/gsutil/gslib/project_id.pyc +0 -0
  947. data/packages/gsutil/gslib/storage_uri_builder.py +0 -56
  948. data/packages/gsutil/gslib/storage_uri_builder.pyc +0 -0
  949. data/packages/gsutil/gslib/tests/__init__.pyc +0 -0
  950. data/packages/gsutil/gslib/tests/test_chacl.py +0 -236
  951. data/packages/gsutil/gslib/tests/test_cp.py +0 -267
  952. data/packages/gsutil/gslib/tests/test_data/test.gif +0 -0
  953. data/packages/gsutil/gslib/tests/test_data/test.mp3 +0 -0
  954. data/packages/gsutil/gslib/tests/test_ls.py +0 -66
  955. data/packages/gsutil/gslib/tests/test_mv.py +0 -69
  956. data/packages/gsutil/gslib/tests/test_naming.py +0 -989
  957. data/packages/gsutil/gslib/tests/test_perfdiag.py +0 -41
  958. data/packages/gsutil/gslib/tests/test_plurality_checkable_iterator.py +0 -67
  959. data/packages/gsutil/gslib/tests/test_rm.py +0 -143
  960. data/packages/gsutil/gslib/tests/test_setacl.py +0 -152
  961. data/packages/gsutil/gslib/tests/test_setcors.py +0 -168
  962. data/packages/gsutil/gslib/tests/test_setmeta.py +0 -91
  963. data/packages/gsutil/gslib/tests/test_setversioning.py +0 -44
  964. data/packages/gsutil/gslib/tests/test_setwebcfg.py +0 -63
  965. data/packages/gsutil/gslib/tests/test_thread_pool.py +0 -92
  966. data/packages/gsutil/gslib/tests/test_wildcard_iterator.py +0 -364
  967. data/packages/gsutil/gslib/tests/testcase/base.py +0 -89
  968. data/packages/gsutil/gslib/tests/testcase/integration_testcase.py +0 -197
  969. data/packages/gsutil/gslib/tests/testcase/unit_testcase.py +0 -230
  970. data/packages/gsutil/gslib/tests/util.py +0 -125
  971. data/packages/gsutil/gslib/tests/util.pyc +0 -0
  972. data/packages/gsutil/gslib/thread_pool.py +0 -79
  973. data/packages/gsutil/gslib/thread_pool.pyc +0 -0
  974. data/packages/gsutil/gslib/util.py +0 -151
  975. data/packages/gsutil/gslib/util.pyc +0 -0
  976. data/packages/gsutil/gslib/wildcard_iterator.py +0 -492
  977. data/packages/gsutil/gslib/wildcard_iterator.pyc +0 -0
  978. data/packages/gsutil/gsutil +0 -377
  979. data/packages/gsutil/gsutil.spec.in +0 -75
  980. data/packages/gsutil/oauth2_plugin/__init__.py +0 -22
  981. data/packages/gsutil/oauth2_plugin/__init__.pyc +0 -0
  982. data/packages/gsutil/oauth2_plugin/oauth2_client.py +0 -642
  983. data/packages/gsutil/oauth2_plugin/oauth2_client.pyc +0 -0
  984. data/packages/gsutil/oauth2_plugin/oauth2_client_test.py +0 -374
  985. data/packages/gsutil/oauth2_plugin/oauth2_helper.py +0 -110
  986. data/packages/gsutil/oauth2_plugin/oauth2_helper.pyc +0 -0
  987. data/packages/gsutil/oauth2_plugin/oauth2_plugin.py +0 -24
  988. data/packages/gsutil/oauth2_plugin/oauth2_plugin.pyc +0 -0
  989. data/packages/gsutil/pkg_gen.sh +0 -54
  990. data/packages/gsutil/pkg_util.py +0 -60
  991. data/packages/gsutil/setup.py +0 -141
  992. data/packages/gsutil/third_party/__init__.py +0 -0
  993. data/packages/gsutil/third_party/__init__.pyc +0 -0
  994. data/packages/gsutil/third_party/fancy_urllib/README +0 -21
  995. data/packages/gsutil/third_party/fancy_urllib/__init__.py +0 -398
  996. data/packages/gsutil/third_party/fancy_urllib/__init__.pyc +0 -0
  997. data/tasks/rubygem.rake +0 -31
  998. metadata.gz.sig +0 -0
@@ -1,123 +0,0 @@
1
- #!/usr/bin/python2.4
2
- #
3
- # Copyright (C) 2010 Google Inc.
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License");
6
- # you may not use this file except in compliance with the License.
7
- # You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
-
17
- """Errors for the library.
18
-
19
- All exceptions defined by the library
20
- should be defined in this file.
21
- """
22
-
23
-
24
-
25
-
26
- from oauth2client.anyjson import simplejson
27
-
28
-
29
- class Error(Exception):
30
- """Base error for this module."""
31
- pass
32
-
33
-
34
- class HttpError(Error):
35
- """HTTP data was invalid or unexpected."""
36
-
37
- def __init__(self, resp, content, uri=None):
38
- self.resp = resp
39
- self.content = content
40
- self.uri = uri
41
-
42
- def _get_reason(self):
43
- """Calculate the reason for the error from the response content."""
44
- if self.resp.get('content-type', '').startswith('application/json'):
45
- try:
46
- data = simplejson.loads(self.content)
47
- reason = data['error']['message']
48
- except (ValueError, KeyError):
49
- reason = self.content
50
- else:
51
- reason = self.resp.reason
52
- return reason
53
-
54
- def __repr__(self):
55
- if self.uri:
56
- return '<HttpError %s when requesting %s returned "%s">' % (
57
- self.resp.status, self.uri, self._get_reason())
58
- else:
59
- return '<HttpError %s "%s">' % (self.resp.status, self._get_reason())
60
-
61
- __str__ = __repr__
62
-
63
-
64
- class InvalidJsonError(Error):
65
- """The JSON returned could not be parsed."""
66
- pass
67
-
68
-
69
- class UnknownLinkType(Error):
70
- """Link type unknown or unexpected."""
71
- pass
72
-
73
-
74
- class UnknownApiNameOrVersion(Error):
75
- """No API with that name and version exists."""
76
- pass
77
-
78
-
79
- class UnacceptableMimeTypeError(Error):
80
- """That is an unacceptable mimetype for this operation."""
81
- pass
82
-
83
-
84
- class MediaUploadSizeError(Error):
85
- """Media is larger than the method can accept."""
86
- pass
87
-
88
-
89
- class ResumableUploadError(Error):
90
- """Error occured during resumable upload."""
91
- pass
92
-
93
-
94
- class BatchError(HttpError):
95
- """Error occured during batch operations."""
96
-
97
- def __init__(self, reason, resp=None, content=None):
98
- self.resp = resp
99
- self.content = content
100
- self.reason = reason
101
-
102
- def __repr__(self):
103
- return '<BatchError %s "%s">' % (self.resp.status, self.reason)
104
-
105
- __str__ = __repr__
106
-
107
-
108
- class UnexpectedMethodError(Error):
109
- """Exception raised by RequestMockBuilder on unexpected calls."""
110
-
111
- def __init__(self, methodId=None):
112
- """Constructor for an UnexpectedMethodError."""
113
- super(UnexpectedMethodError, self).__init__(
114
- 'Received unexpected call %s' % methodId)
115
-
116
-
117
- class UnexpectedBodyError(Error):
118
- """Exception raised by RequestMockBuilder on unexpected bodies."""
119
-
120
- def __init__(self, expected, provided):
121
- """Constructor for an UnexpectedMethodError."""
122
- super(UnexpectedBodyError, self).__init__(
123
- 'Expected: [%s] - Provided: [%s]' % (expected, provided))
@@ -1,1443 +0,0 @@
1
- # Copyright (C) 2012 Google Inc.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- """Classes to encapsulate a single HTTP request.
16
-
17
- The classes implement a command pattern, with every
18
- object supporting an execute() method that does the
19
- actuall HTTP request.
20
- """
21
-
22
-
23
-
24
- import StringIO
25
- import base64
26
- import copy
27
- import gzip
28
- import httplib2
29
- import mimeparse
30
- import mimetypes
31
- import os
32
- import urllib
33
- import urlparse
34
- import uuid
35
-
36
- from email.generator import Generator
37
- from email.mime.multipart import MIMEMultipart
38
- from email.mime.nonmultipart import MIMENonMultipart
39
- from email.parser import FeedParser
40
- from errors import BatchError
41
- from errors import HttpError
42
- from errors import ResumableUploadError
43
- from errors import UnexpectedBodyError
44
- from errors import UnexpectedMethodError
45
- from model import JsonModel
46
- from oauth2client.anyjson import simplejson
47
-
48
-
49
- DEFAULT_CHUNK_SIZE = 512*1024
50
-
51
-
52
- class MediaUploadProgress(object):
53
- """Status of a resumable upload."""
54
-
55
- def __init__(self, resumable_progress, total_size):
56
- """Constructor.
57
-
58
- Args:
59
- resumable_progress: int, bytes sent so far.
60
- total_size: int, total bytes in complete upload, or None if the total
61
- upload size isn't known ahead of time.
62
- """
63
- self.resumable_progress = resumable_progress
64
- self.total_size = total_size
65
-
66
- def progress(self):
67
- """Percent of upload completed, as a float.
68
-
69
- Returns:
70
- the percentage complete as a float, returning 0.0 if the total size of
71
- the upload is unknown.
72
- """
73
- if self.total_size is not None:
74
- return float(self.resumable_progress) / float(self.total_size)
75
- else:
76
- return 0.0
77
-
78
-
79
- class MediaDownloadProgress(object):
80
- """Status of a resumable download."""
81
-
82
- def __init__(self, resumable_progress, total_size):
83
- """Constructor.
84
-
85
- Args:
86
- resumable_progress: int, bytes received so far.
87
- total_size: int, total bytes in complete download.
88
- """
89
- self.resumable_progress = resumable_progress
90
- self.total_size = total_size
91
-
92
- def progress(self):
93
- """Percent of download completed, as a float.
94
-
95
- Returns:
96
- the percentage complete as a float, returning 0.0 if the total size of
97
- the download is unknown.
98
- """
99
- if self.total_size is not None:
100
- return float(self.resumable_progress) / float(self.total_size)
101
- else:
102
- return 0.0
103
-
104
-
105
- class MediaUpload(object):
106
- """Describes a media object to upload.
107
-
108
- Base class that defines the interface of MediaUpload subclasses.
109
-
110
- Note that subclasses of MediaUpload may allow you to control the chunksize
111
- when upload a media object. It is important to keep the size of the chunk as
112
- large as possible to keep the upload efficient. Other factors may influence
113
- the size of the chunk you use, particularly if you are working in an
114
- environment where individual HTTP requests may have a hardcoded time limit,
115
- such as under certain classes of requests under Google App Engine.
116
- """
117
-
118
- def chunksize(self):
119
- """Chunk size for resumable uploads.
120
-
121
- Returns:
122
- Chunk size in bytes.
123
- """
124
- raise NotImplementedError()
125
-
126
- def mimetype(self):
127
- """Mime type of the body.
128
-
129
- Returns:
130
- Mime type.
131
- """
132
- return 'application/octet-stream'
133
-
134
- def size(self):
135
- """Size of upload.
136
-
137
- Returns:
138
- Size of the body, or None of the size is unknown.
139
- """
140
- return None
141
-
142
- def resumable(self):
143
- """Whether this upload is resumable.
144
-
145
- Returns:
146
- True if resumable upload or False.
147
- """
148
- return False
149
-
150
- def getbytes(self, begin, end):
151
- """Get bytes from the media.
152
-
153
- Args:
154
- begin: int, offset from beginning of file.
155
- length: int, number of bytes to read, starting at begin.
156
-
157
- Returns:
158
- A string of bytes read. May be shorter than length if EOF was reached
159
- first.
160
- """
161
- raise NotImplementedError()
162
-
163
- def _to_json(self, strip=None):
164
- """Utility function for creating a JSON representation of a MediaUpload.
165
-
166
- Args:
167
- strip: array, An array of names of members to not include in the JSON.
168
-
169
- Returns:
170
- string, a JSON representation of this instance, suitable to pass to
171
- from_json().
172
- """
173
- t = type(self)
174
- d = copy.copy(self.__dict__)
175
- if strip is not None:
176
- for member in strip:
177
- del d[member]
178
- d['_class'] = t.__name__
179
- d['_module'] = t.__module__
180
- return simplejson.dumps(d)
181
-
182
- def to_json(self):
183
- """Create a JSON representation of an instance of MediaUpload.
184
-
185
- Returns:
186
- string, a JSON representation of this instance, suitable to pass to
187
- from_json().
188
- """
189
- return self._to_json()
190
-
191
- @classmethod
192
- def new_from_json(cls, s):
193
- """Utility class method to instantiate a MediaUpload subclass from a JSON
194
- representation produced by to_json().
195
-
196
- Args:
197
- s: string, JSON from to_json().
198
-
199
- Returns:
200
- An instance of the subclass of MediaUpload that was serialized with
201
- to_json().
202
- """
203
- data = simplejson.loads(s)
204
- # Find and call the right classmethod from_json() to restore the object.
205
- module = data['_module']
206
- m = __import__(module, fromlist=module.split('.')[:-1])
207
- kls = getattr(m, data['_class'])
208
- from_json = getattr(kls, 'from_json')
209
- return from_json(s)
210
-
211
-
212
- class MediaFileUpload(MediaUpload):
213
- """A MediaUpload for a file.
214
-
215
- Construct a MediaFileUpload and pass as the media_body parameter of the
216
- method. For example, if we had a service that allowed uploading images:
217
-
218
-
219
- media = MediaFileUpload('cow.png', mimetype='image/png',
220
- chunksize=1024*1024, resumable=True)
221
- farm.animals()..insert(
222
- id='cow',
223
- name='cow.png',
224
- media_body=media).execute()
225
- """
226
-
227
- def __init__(self, filename, mimetype=None, chunksize=DEFAULT_CHUNK_SIZE, resumable=False):
228
- """Constructor.
229
-
230
- Args:
231
- filename: string, Name of the file.
232
- mimetype: string, Mime-type of the file. If None then a mime-type will be
233
- guessed from the file extension.
234
- chunksize: int, File will be uploaded in chunks of this many bytes. Only
235
- used if resumable=True.
236
- resumable: bool, True if this is a resumable upload. False means upload
237
- in a single request.
238
- """
239
- self._filename = filename
240
- self._size = os.path.getsize(filename)
241
- self._fd = None
242
- if mimetype is None:
243
- (mimetype, encoding) = mimetypes.guess_type(filename)
244
- self._mimetype = mimetype
245
- self._chunksize = chunksize
246
- self._resumable = resumable
247
-
248
- def chunksize(self):
249
- """Chunk size for resumable uploads.
250
-
251
- Returns:
252
- Chunk size in bytes.
253
- """
254
- return self._chunksize
255
-
256
- def mimetype(self):
257
- """Mime type of the body.
258
-
259
- Returns:
260
- Mime type.
261
- """
262
- return self._mimetype
263
-
264
- def size(self):
265
- """Size of upload.
266
-
267
- Returns:
268
- Size of the body, or None of the size is unknown.
269
- """
270
- return self._size
271
-
272
- def resumable(self):
273
- """Whether this upload is resumable.
274
-
275
- Returns:
276
- True if resumable upload or False.
277
- """
278
- return self._resumable
279
-
280
- def getbytes(self, begin, length):
281
- """Get bytes from the media.
282
-
283
- Args:
284
- begin: int, offset from beginning of file.
285
- length: int, number of bytes to read, starting at begin.
286
-
287
- Returns:
288
- A string of bytes read. May be shorted than length if EOF was reached
289
- first.
290
- """
291
- if self._fd is None:
292
- self._fd = open(self._filename, 'rb')
293
- self._fd.seek(begin)
294
- return self._fd.read(length)
295
-
296
- def to_json(self):
297
- """Creating a JSON representation of an instance of MediaFileUpload.
298
-
299
- Returns:
300
- string, a JSON representation of this instance, suitable to pass to
301
- from_json().
302
- """
303
- return self._to_json(['_fd'])
304
-
305
- @staticmethod
306
- def from_json(s):
307
- d = simplejson.loads(s)
308
- return MediaFileUpload(
309
- d['_filename'], d['_mimetype'], d['_chunksize'], d['_resumable'])
310
-
311
-
312
- class MediaIoBaseUpload(MediaUpload):
313
- """A MediaUpload for a io.Base objects.
314
-
315
- Note that the Python file object is compatible with io.Base and can be used
316
- with this class also.
317
-
318
- fh = io.BytesIO('...Some data to upload...')
319
- media = MediaIoBaseUpload(fh, mimetype='image/png',
320
- chunksize=1024*1024, resumable=True)
321
- farm.animals().insert(
322
- id='cow',
323
- name='cow.png',
324
- media_body=media).execute()
325
- """
326
-
327
- def __init__(self, fh, mimetype, chunksize=DEFAULT_CHUNK_SIZE,
328
- resumable=False):
329
- """Constructor.
330
-
331
- Args:
332
- fh: io.Base or file object, The source of the bytes to upload. MUST be
333
- opened in blocking mode, do not use streams opened in non-blocking mode.
334
- mimetype: string, Mime-type of the file. If None then a mime-type will be
335
- guessed from the file extension.
336
- chunksize: int, File will be uploaded in chunks of this many bytes. Only
337
- used if resumable=True.
338
- resumable: bool, True if this is a resumable upload. False means upload
339
- in a single request.
340
- """
341
- self._fh = fh
342
- self._mimetype = mimetype
343
- self._chunksize = chunksize
344
- self._resumable = resumable
345
- self._size = None
346
- try:
347
- if hasattr(self._fh, 'fileno'):
348
- fileno = self._fh.fileno()
349
-
350
- # Pipes and such show up as 0 length files.
351
- size = os.fstat(fileno).st_size
352
- if size:
353
- self._size = os.fstat(fileno).st_size
354
- except IOError:
355
- pass
356
-
357
- def chunksize(self):
358
- """Chunk size for resumable uploads.
359
-
360
- Returns:
361
- Chunk size in bytes.
362
- """
363
- return self._chunksize
364
-
365
- def mimetype(self):
366
- """Mime type of the body.
367
-
368
- Returns:
369
- Mime type.
370
- """
371
- return self._mimetype
372
-
373
- def size(self):
374
- """Size of upload.
375
-
376
- Returns:
377
- Size of the body, or None of the size is unknown.
378
- """
379
- return self._size
380
-
381
- def resumable(self):
382
- """Whether this upload is resumable.
383
-
384
- Returns:
385
- True if resumable upload or False.
386
- """
387
- return self._resumable
388
-
389
- def getbytes(self, begin, length):
390
- """Get bytes from the media.
391
-
392
- Args:
393
- begin: int, offset from beginning of file.
394
- length: int, number of bytes to read, starting at begin.
395
-
396
- Returns:
397
- A string of bytes read. May be shorted than length if EOF was reached
398
- first.
399
- """
400
- self._fh.seek(begin)
401
- return self._fh.read(length)
402
-
403
- def to_json(self):
404
- """This upload type is not serializable."""
405
- raise NotImplementedError('MediaIoBaseUpload is not serializable.')
406
-
407
-
408
- class MediaInMemoryUpload(MediaUpload):
409
- """MediaUpload for a chunk of bytes.
410
-
411
- Construct a MediaFileUpload and pass as the media_body parameter of the
412
- method.
413
- """
414
-
415
- def __init__(self, body, mimetype='application/octet-stream',
416
- chunksize=DEFAULT_CHUNK_SIZE, resumable=False):
417
- """Create a new MediaBytesUpload.
418
-
419
- Args:
420
- body: string, Bytes of body content.
421
- mimetype: string, Mime-type of the file or default of
422
- 'application/octet-stream'.
423
- chunksize: int, File will be uploaded in chunks of this many bytes. Only
424
- used if resumable=True.
425
- resumable: bool, True if this is a resumable upload. False means upload
426
- in a single request.
427
- """
428
- self._body = body
429
- self._mimetype = mimetype
430
- self._resumable = resumable
431
- self._chunksize = chunksize
432
-
433
- def chunksize(self):
434
- """Chunk size for resumable uploads.
435
-
436
- Returns:
437
- Chunk size in bytes.
438
- """
439
- return self._chunksize
440
-
441
- def mimetype(self):
442
- """Mime type of the body.
443
-
444
- Returns:
445
- Mime type.
446
- """
447
- return self._mimetype
448
-
449
- def size(self):
450
- """Size of upload.
451
-
452
- Returns:
453
- Size of the body, or None of the size is unknown.
454
- """
455
- return len(self._body)
456
-
457
- def resumable(self):
458
- """Whether this upload is resumable.
459
-
460
- Returns:
461
- True if resumable upload or False.
462
- """
463
- return self._resumable
464
-
465
- def getbytes(self, begin, length):
466
- """Get bytes from the media.
467
-
468
- Args:
469
- begin: int, offset from beginning of file.
470
- length: int, number of bytes to read, starting at begin.
471
-
472
- Returns:
473
- A string of bytes read. May be shorter than length if EOF was reached
474
- first.
475
- """
476
- return self._body[begin:begin + length]
477
-
478
- def to_json(self):
479
- """Create a JSON representation of a MediaInMemoryUpload.
480
-
481
- Returns:
482
- string, a JSON representation of this instance, suitable to pass to
483
- from_json().
484
- """
485
- t = type(self)
486
- d = copy.copy(self.__dict__)
487
- del d['_body']
488
- d['_class'] = t.__name__
489
- d['_module'] = t.__module__
490
- d['_b64body'] = base64.b64encode(self._body)
491
- return simplejson.dumps(d)
492
-
493
- @staticmethod
494
- def from_json(s):
495
- d = simplejson.loads(s)
496
- return MediaInMemoryUpload(base64.b64decode(d['_b64body']),
497
- d['_mimetype'], d['_chunksize'],
498
- d['_resumable'])
499
-
500
-
501
- class MediaIoBaseDownload(object):
502
- """"Download media resources.
503
-
504
- Note that the Python file object is compatible with io.Base and can be used
505
- with this class also.
506
-
507
-
508
- Example:
509
- request = farms.animals().get_media(id='cow')
510
- fh = io.FileIO('cow.png', mode='wb')
511
- downloader = MediaIoBaseDownload(fh, request, chunksize=1024*1024)
512
-
513
- done = False
514
- while done is False:
515
- status, done = downloader.next_chunk()
516
- if status:
517
- print "Download %d%%." % int(status.progress() * 100)
518
- print "Download Complete!"
519
- """
520
-
521
- def __init__(self, fh, request, chunksize=DEFAULT_CHUNK_SIZE):
522
- """Constructor.
523
-
524
- Args:
525
- fh: io.Base or file object, The stream in which to write the downloaded
526
- bytes.
527
- request: apiclient.http.HttpRequest, the media request to perform in
528
- chunks.
529
- chunksize: int, File will be downloaded in chunks of this many bytes.
530
- """
531
- self.fh_ = fh
532
- self.request_ = request
533
- self.uri_ = request.uri
534
- self.chunksize_ = chunksize
535
- self.progress_ = 0
536
- self.total_size_ = None
537
- self.done_ = False
538
-
539
- def next_chunk(self):
540
- """Get the next chunk of the download.
541
-
542
- Returns:
543
- (status, done): (MediaDownloadStatus, boolean)
544
- The value of 'done' will be True when the media has been fully
545
- downloaded.
546
-
547
- Raises:
548
- apiclient.errors.HttpError if the response was not a 2xx.
549
- httplib2.Error if a transport error has occured.
550
- """
551
- headers = {
552
- 'range': 'bytes=%d-%d' % (
553
- self.progress_, self.progress_ + self.chunksize_)
554
- }
555
- http = self.request_.http
556
- http.follow_redirects = False
557
-
558
- resp, content = http.request(self.uri_, headers=headers)
559
- if resp.status in [301, 302, 303, 307, 308] and 'location' in resp:
560
- self.uri_ = resp['location']
561
- resp, content = http.request(self.uri_, headers=headers)
562
- if resp.status in [200, 206]:
563
- self.progress_ += len(content)
564
- self.fh_.write(content)
565
-
566
- if 'content-range' in resp:
567
- content_range = resp['content-range']
568
- length = content_range.rsplit('/', 1)[1]
569
- self.total_size_ = int(length)
570
-
571
- if self.progress_ == self.total_size_:
572
- self.done_ = True
573
- return MediaDownloadProgress(self.progress_, self.total_size_), self.done_
574
- else:
575
- raise HttpError(resp, content, self.uri_)
576
-
577
-
578
- class HttpRequest(object):
579
- """Encapsulates a single HTTP request."""
580
-
581
- def __init__(self, http, postproc, uri,
582
- method='GET',
583
- body=None,
584
- headers=None,
585
- methodId=None,
586
- resumable=None):
587
- """Constructor for an HttpRequest.
588
-
589
- Args:
590
- http: httplib2.Http, the transport object to use to make a request
591
- postproc: callable, called on the HTTP response and content to transform
592
- it into a data object before returning, or raising an exception
593
- on an error.
594
- uri: string, the absolute URI to send the request to
595
- method: string, the HTTP method to use
596
- body: string, the request body of the HTTP request,
597
- headers: dict, the HTTP request headers
598
- methodId: string, a unique identifier for the API method being called.
599
- resumable: MediaUpload, None if this is not a resumbale request.
600
- """
601
- self.uri = uri
602
- self.method = method
603
- self.body = body
604
- self.headers = headers or {}
605
- self.methodId = methodId
606
- self.http = http
607
- self.postproc = postproc
608
- self.resumable = resumable
609
- self._in_error_state = False
610
-
611
- # Pull the multipart boundary out of the content-type header.
612
- major, minor, params = mimeparse.parse_mime_type(
613
- headers.get('content-type', 'application/json'))
614
-
615
- # The size of the non-media part of the request.
616
- self.body_size = len(self.body or '')
617
-
618
- # The resumable URI to send chunks to.
619
- self.resumable_uri = None
620
-
621
- # The bytes that have been uploaded.
622
- self.resumable_progress = 0
623
-
624
- def execute(self, http=None):
625
- """Execute the request.
626
-
627
- Args:
628
- http: httplib2.Http, an http object to be used in place of the
629
- one the HttpRequest request object was constructed with.
630
-
631
- Returns:
632
- A deserialized object model of the response body as determined
633
- by the postproc.
634
-
635
- Raises:
636
- apiclient.errors.HttpError if the response was not a 2xx.
637
- httplib2.Error if a transport error has occured.
638
- """
639
- if http is None:
640
- http = self.http
641
- if self.resumable:
642
- body = None
643
- while body is None:
644
- _, body = self.next_chunk(http)
645
- return body
646
- else:
647
- if 'content-length' not in self.headers:
648
- self.headers['content-length'] = str(self.body_size)
649
- resp, content = http.request(self.uri, self.method,
650
- body=self.body,
651
- headers=self.headers)
652
-
653
- if resp.status >= 300:
654
- raise HttpError(resp, content, self.uri)
655
- return self.postproc(resp, content)
656
-
657
- def next_chunk(self, http=None):
658
- """Execute the next step of a resumable upload.
659
-
660
- Can only be used if the method being executed supports media uploads and
661
- the MediaUpload object passed in was flagged as using resumable upload.
662
-
663
- Example:
664
-
665
- media = MediaFileUpload('cow.png', mimetype='image/png',
666
- chunksize=1000, resumable=True)
667
- request = farm.animals().insert(
668
- id='cow',
669
- name='cow.png',
670
- media_body=media)
671
-
672
- response = None
673
- while response is None:
674
- status, response = request.next_chunk()
675
- if status:
676
- print "Upload %d%% complete." % int(status.progress() * 100)
677
-
678
-
679
- Returns:
680
- (status, body): (ResumableMediaStatus, object)
681
- The body will be None until the resumable media is fully uploaded.
682
-
683
- Raises:
684
- apiclient.errors.HttpError if the response was not a 2xx.
685
- httplib2.Error if a transport error has occured.
686
- """
687
- if http is None:
688
- http = self.http
689
-
690
- if self.resumable.size() is None:
691
- size = '*'
692
- else:
693
- size = str(self.resumable.size())
694
-
695
- if self.resumable_uri is None:
696
- start_headers = copy.copy(self.headers)
697
- start_headers['X-Upload-Content-Type'] = self.resumable.mimetype()
698
- if size != '*':
699
- start_headers['X-Upload-Content-Length'] = size
700
- start_headers['content-length'] = str(self.body_size)
701
-
702
- resp, content = http.request(self.uri, self.method,
703
- body=self.body,
704
- headers=start_headers)
705
- if resp.status == 200 and 'location' in resp:
706
- self.resumable_uri = resp['location']
707
- else:
708
- raise ResumableUploadError("Failed to retrieve starting URI.")
709
- elif self._in_error_state:
710
- # If we are in an error state then query the server for current state of
711
- # the upload by sending an empty PUT and reading the 'range' header in
712
- # the response.
713
- headers = {
714
- 'Content-Range': 'bytes */%s' % size,
715
- 'content-length': '0'
716
- }
717
- resp, content = http.request(self.resumable_uri, 'PUT',
718
- headers=headers)
719
- status, body = self._process_response(resp, content)
720
- if body:
721
- # The upload was complete.
722
- return (status, body)
723
-
724
- data = self.resumable.getbytes(
725
- self.resumable_progress, self.resumable.chunksize())
726
-
727
- # A short read implies that we are at EOF, so finish the upload.
728
- if len(data) < self.resumable.chunksize():
729
- size = str(self.resumable_progress + len(data))
730
-
731
- headers = {
732
- 'Content-Range': 'bytes %d-%d/%s' % (
733
- self.resumable_progress, self.resumable_progress + len(data) - 1,
734
- size)
735
- }
736
- try:
737
- resp, content = http.request(self.resumable_uri, 'PUT',
738
- body=data,
739
- headers=headers)
740
- except:
741
- self._in_error_state = True
742
- raise
743
-
744
- return self._process_response(resp, content)
745
-
746
- def _process_response(self, resp, content):
747
- """Process the response from a single chunk upload.
748
-
749
- Args:
750
- resp: httplib2.Response, the response object.
751
- content: string, the content of the response.
752
-
753
- Returns:
754
- (status, body): (ResumableMediaStatus, object)
755
- The body will be None until the resumable media is fully uploaded.
756
-
757
- Raises:
758
- apiclient.errors.HttpError if the response was not a 2xx or a 308.
759
- """
760
- if resp.status in [200, 201]:
761
- self._in_error_state = False
762
- return None, self.postproc(resp, content)
763
- elif resp.status == 308:
764
- self._in_error_state = False
765
- # A "308 Resume Incomplete" indicates we are not done.
766
- self.resumable_progress = int(resp['range'].split('-')[1]) + 1
767
- if 'location' in resp:
768
- self.resumable_uri = resp['location']
769
- else:
770
- self._in_error_state = True
771
- raise HttpError(resp, content, self.uri)
772
-
773
- return (MediaUploadProgress(self.resumable_progress, self.resumable.size()),
774
- None)
775
-
776
- def to_json(self):
777
- """Returns a JSON representation of the HttpRequest."""
778
- d = copy.copy(self.__dict__)
779
- if d['resumable'] is not None:
780
- d['resumable'] = self.resumable.to_json()
781
- del d['http']
782
- del d['postproc']
783
-
784
- return simplejson.dumps(d)
785
-
786
- @staticmethod
787
- def from_json(s, http, postproc):
788
- """Returns an HttpRequest populated with info from a JSON object."""
789
- d = simplejson.loads(s)
790
- if d['resumable'] is not None:
791
- d['resumable'] = MediaUpload.new_from_json(d['resumable'])
792
- return HttpRequest(
793
- http,
794
- postproc,
795
- uri=d['uri'],
796
- method=d['method'],
797
- body=d['body'],
798
- headers=d['headers'],
799
- methodId=d['methodId'],
800
- resumable=d['resumable'])
801
-
802
-
803
- class BatchHttpRequest(object):
804
- """Batches multiple HttpRequest objects into a single HTTP request.
805
-
806
- Example:
807
- from apiclient.http import BatchHttpRequest
808
-
809
- def list_animals(request_id, response):
810
- \"\"\"Do something with the animals list response.\"\"\"
811
- pass
812
-
813
- def list_farmers(request_id, response):
814
- \"\"\"Do something with the farmers list response.\"\"\"
815
- pass
816
-
817
- service = build('farm', 'v2')
818
-
819
- batch = BatchHttpRequest()
820
-
821
- batch.add(service.animals().list(), list_animals)
822
- batch.add(service.farmers().list(), list_farmers)
823
- batch.execute(http)
824
- """
825
-
826
- def __init__(self, callback=None, batch_uri=None):
827
- """Constructor for a BatchHttpRequest.
828
-
829
- Args:
830
- callback: callable, A callback to be called for each response, of the
831
- form callback(id, response). The first parameter is the request id, and
832
- the second is the deserialized response object.
833
- batch_uri: string, URI to send batch requests to.
834
- """
835
- if batch_uri is None:
836
- batch_uri = 'https://www.googleapis.com/batch'
837
- self._batch_uri = batch_uri
838
-
839
- # Global callback to be called for each individual response in the batch.
840
- self._callback = callback
841
-
842
- # A map from id to request.
843
- self._requests = {}
844
-
845
- # A map from id to callback.
846
- self._callbacks = {}
847
-
848
- # List of request ids, in the order in which they were added.
849
- self._order = []
850
-
851
- # The last auto generated id.
852
- self._last_auto_id = 0
853
-
854
- # Unique ID on which to base the Content-ID headers.
855
- self._base_id = None
856
-
857
- # A map from request id to (headers, content) response pairs
858
- self._responses = {}
859
-
860
- # A map of id(Credentials) that have been refreshed.
861
- self._refreshed_credentials = {}
862
-
863
- def _refresh_and_apply_credentials(self, request, http):
864
- """Refresh the credentials and apply to the request.
865
-
866
- Args:
867
- request: HttpRequest, the request.
868
- http: httplib2.Http, the global http object for the batch.
869
- """
870
- # For the credentials to refresh, but only once per refresh_token
871
- # If there is no http per the request then refresh the http passed in
872
- # via execute()
873
- creds = None
874
- if request.http is not None and hasattr(request.http.request,
875
- 'credentials'):
876
- creds = request.http.request.credentials
877
- elif http is not None and hasattr(http.request, 'credentials'):
878
- creds = http.request.credentials
879
- if creds is not None:
880
- if id(creds) not in self._refreshed_credentials:
881
- creds.refresh(http)
882
- self._refreshed_credentials[id(creds)] = 1
883
-
884
- # Only apply the credentials if we are using the http object passed in,
885
- # otherwise apply() will get called during _serialize_request().
886
- if request.http is None or not hasattr(request.http.request,
887
- 'credentials'):
888
- creds.apply(request.headers)
889
-
890
- def _id_to_header(self, id_):
891
- """Convert an id to a Content-ID header value.
892
-
893
- Args:
894
- id_: string, identifier of individual request.
895
-
896
- Returns:
897
- A Content-ID header with the id_ encoded into it. A UUID is prepended to
898
- the value because Content-ID headers are supposed to be universally
899
- unique.
900
- """
901
- if self._base_id is None:
902
- self._base_id = uuid.uuid4()
903
-
904
- return '<%s+%s>' % (self._base_id, urllib.quote(id_))
905
-
906
- def _header_to_id(self, header):
907
- """Convert a Content-ID header value to an id.
908
-
909
- Presumes the Content-ID header conforms to the format that _id_to_header()
910
- returns.
911
-
912
- Args:
913
- header: string, Content-ID header value.
914
-
915
- Returns:
916
- The extracted id value.
917
-
918
- Raises:
919
- BatchError if the header is not in the expected format.
920
- """
921
- if header[0] != '<' or header[-1] != '>':
922
- raise BatchError("Invalid value for Content-ID: %s" % header)
923
- if '+' not in header:
924
- raise BatchError("Invalid value for Content-ID: %s" % header)
925
- base, id_ = header[1:-1].rsplit('+', 1)
926
-
927
- return urllib.unquote(id_)
928
-
929
- def _serialize_request(self, request):
930
- """Convert an HttpRequest object into a string.
931
-
932
- Args:
933
- request: HttpRequest, the request to serialize.
934
-
935
- Returns:
936
- The request as a string in application/http format.
937
- """
938
- # Construct status line
939
- parsed = urlparse.urlparse(request.uri)
940
- request_line = urlparse.urlunparse(
941
- (None, None, parsed.path, parsed.params, parsed.query, None)
942
- )
943
- status_line = request.method + ' ' + request_line + ' HTTP/1.1\n'
944
- major, minor = request.headers.get('content-type', 'application/json').split('/')
945
- msg = MIMENonMultipart(major, minor)
946
- headers = request.headers.copy()
947
-
948
- if request.http is not None and hasattr(request.http.request,
949
- 'credentials'):
950
- request.http.request.credentials.apply(headers)
951
-
952
- # MIMENonMultipart adds its own Content-Type header.
953
- if 'content-type' in headers:
954
- del headers['content-type']
955
-
956
- for key, value in headers.iteritems():
957
- msg[key] = value
958
- msg['Host'] = parsed.netloc
959
- msg.set_unixfrom(None)
960
-
961
- if request.body is not None:
962
- msg.set_payload(request.body)
963
- msg['content-length'] = str(len(request.body))
964
-
965
- # Serialize the mime message.
966
- fp = StringIO.StringIO()
967
- # maxheaderlen=0 means don't line wrap headers.
968
- g = Generator(fp, maxheaderlen=0)
969
- g.flatten(msg, unixfrom=False)
970
- body = fp.getvalue()
971
-
972
- # Strip off the \n\n that the MIME lib tacks onto the end of the payload.
973
- if request.body is None:
974
- body = body[:-2]
975
-
976
- return status_line.encode('utf-8') + body
977
-
978
- def _deserialize_response(self, payload):
979
- """Convert string into httplib2 response and content.
980
-
981
- Args:
982
- payload: string, headers and body as a string.
983
-
984
- Returns:
985
- A pair (resp, content) like would be returned from httplib2.request.
986
- """
987
- # Strip off the status line
988
- status_line, payload = payload.split('\n', 1)
989
- protocol, status, reason = status_line.split(' ', 2)
990
-
991
- # Parse the rest of the response
992
- parser = FeedParser()
993
- parser.feed(payload)
994
- msg = parser.close()
995
- msg['status'] = status
996
-
997
- # Create httplib2.Response from the parsed headers.
998
- resp = httplib2.Response(msg)
999
- resp.reason = reason
1000
- resp.version = int(protocol.split('/', 1)[1].replace('.', ''))
1001
-
1002
- content = payload.split('\r\n\r\n', 1)[1]
1003
-
1004
- return resp, content
1005
-
1006
- def _new_id(self):
1007
- """Create a new id.
1008
-
1009
- Auto incrementing number that avoids conflicts with ids already used.
1010
-
1011
- Returns:
1012
- string, a new unique id.
1013
- """
1014
- self._last_auto_id += 1
1015
- while str(self._last_auto_id) in self._requests:
1016
- self._last_auto_id += 1
1017
- return str(self._last_auto_id)
1018
-
1019
- def add(self, request, callback=None, request_id=None):
1020
- """Add a new request.
1021
-
1022
- Every callback added will be paired with a unique id, the request_id. That
1023
- unique id will be passed back to the callback when the response comes back
1024
- from the server. The default behavior is to have the library generate it's
1025
- own unique id. If the caller passes in a request_id then they must ensure
1026
- uniqueness for each request_id, and if they are not an exception is
1027
- raised. Callers should either supply all request_ids or nevery supply a
1028
- request id, to avoid such an error.
1029
-
1030
- Args:
1031
- request: HttpRequest, Request to add to the batch.
1032
- callback: callable, A callback to be called for this response, of the
1033
- form callback(id, response). The first parameter is the request id, and
1034
- the second is the deserialized response object.
1035
- request_id: string, A unique id for the request. The id will be passed to
1036
- the callback with the response.
1037
-
1038
- Returns:
1039
- None
1040
-
1041
- Raises:
1042
- BatchError if a media request is added to a batch.
1043
- KeyError is the request_id is not unique.
1044
- """
1045
- if request_id is None:
1046
- request_id = self._new_id()
1047
- if request.resumable is not None:
1048
- raise BatchError("Media requests cannot be used in a batch request.")
1049
- if request_id in self._requests:
1050
- raise KeyError("A request with this ID already exists: %s" % request_id)
1051
- self._requests[request_id] = request
1052
- self._callbacks[request_id] = callback
1053
- self._order.append(request_id)
1054
-
1055
- def _execute(self, http, order, requests):
1056
- """Serialize batch request, send to server, process response.
1057
-
1058
- Args:
1059
- http: httplib2.Http, an http object to be used to make the request with.
1060
- order: list, list of request ids in the order they were added to the
1061
- batch.
1062
- request: list, list of request objects to send.
1063
-
1064
- Raises:
1065
- httplib2.Error if a transport error has occured.
1066
- apiclient.errors.BatchError if the response is the wrong format.
1067
- """
1068
- message = MIMEMultipart('mixed')
1069
- # Message should not write out it's own headers.
1070
- setattr(message, '_write_headers', lambda self: None)
1071
-
1072
- # Add all the individual requests.
1073
- for request_id in order:
1074
- request = requests[request_id]
1075
-
1076
- msg = MIMENonMultipart('application', 'http')
1077
- msg['Content-Transfer-Encoding'] = 'binary'
1078
- msg['Content-ID'] = self._id_to_header(request_id)
1079
-
1080
- body = self._serialize_request(request)
1081
- msg.set_payload(body)
1082
- message.attach(msg)
1083
-
1084
- body = message.as_string()
1085
-
1086
- headers = {}
1087
- headers['content-type'] = ('multipart/mixed; '
1088
- 'boundary="%s"') % message.get_boundary()
1089
-
1090
- resp, content = http.request(self._batch_uri, 'POST', body=body,
1091
- headers=headers)
1092
-
1093
- if resp.status >= 300:
1094
- raise HttpError(resp, content, self._batch_uri)
1095
-
1096
- # Now break out the individual responses and store each one.
1097
- boundary, _ = content.split(None, 1)
1098
-
1099
- # Prepend with a content-type header so FeedParser can handle it.
1100
- header = 'content-type: %s\r\n\r\n' % resp['content-type']
1101
- for_parser = header + content
1102
-
1103
- parser = FeedParser()
1104
- parser.feed(for_parser)
1105
- mime_response = parser.close()
1106
-
1107
- if not mime_response.is_multipart():
1108
- raise BatchError("Response not in multipart/mixed format.", resp,
1109
- content)
1110
-
1111
- for part in mime_response.get_payload():
1112
- request_id = self._header_to_id(part['Content-ID'])
1113
- headers, content = self._deserialize_response(part.get_payload())
1114
- self._responses[request_id] = (headers, content)
1115
-
1116
- def execute(self, http=None):
1117
- """Execute all the requests as a single batched HTTP request.
1118
-
1119
- Args:
1120
- http: httplib2.Http, an http object to be used in place of the one the
1121
- HttpRequest request object was constructed with. If one isn't supplied
1122
- then use a http object from the requests in this batch.
1123
-
1124
- Returns:
1125
- None
1126
-
1127
- Raises:
1128
- httplib2.Error if a transport error has occured.
1129
- apiclient.errors.BatchError if the response is the wrong format.
1130
- """
1131
-
1132
- # If http is not supplied use the first valid one given in the requests.
1133
- if http is None:
1134
- for request_id in self._order:
1135
- request = self._requests[request_id]
1136
- if request is not None:
1137
- http = request.http
1138
- break
1139
-
1140
- if http is None:
1141
- raise ValueError("Missing a valid http object.")
1142
-
1143
- self._execute(http, self._order, self._requests)
1144
-
1145
- # Loop over all the requests and check for 401s. For each 401 request the
1146
- # credentials should be refreshed and then sent again in a separate batch.
1147
- redo_requests = {}
1148
- redo_order = []
1149
-
1150
- for request_id in self._order:
1151
- headers, content = self._responses[request_id]
1152
- if headers['status'] == '401':
1153
- redo_order.append(request_id)
1154
- request = self._requests[request_id]
1155
- self._refresh_and_apply_credentials(request, http)
1156
- redo_requests[request_id] = request
1157
-
1158
- if redo_requests:
1159
- self._execute(http, redo_order, redo_requests)
1160
-
1161
- # Now process all callbacks that are erroring, and raise an exception for
1162
- # ones that return a non-2xx response? Or add extra parameter to callback
1163
- # that contains an HttpError?
1164
-
1165
- for request_id in self._order:
1166
- headers, content = self._responses[request_id]
1167
-
1168
- request = self._requests[request_id]
1169
- callback = self._callbacks[request_id]
1170
-
1171
- response = None
1172
- exception = None
1173
- try:
1174
- r = httplib2.Response(headers)
1175
- response = request.postproc(r, content)
1176
- except HttpError, e:
1177
- exception = e
1178
-
1179
- if callback is not None:
1180
- callback(request_id, response, exception)
1181
- if self._callback is not None:
1182
- self._callback(request_id, response, exception)
1183
-
1184
-
1185
- class HttpRequestMock(object):
1186
- """Mock of HttpRequest.
1187
-
1188
- Do not construct directly, instead use RequestMockBuilder.
1189
- """
1190
-
1191
- def __init__(self, resp, content, postproc):
1192
- """Constructor for HttpRequestMock
1193
-
1194
- Args:
1195
- resp: httplib2.Response, the response to emulate coming from the request
1196
- content: string, the response body
1197
- postproc: callable, the post processing function usually supplied by
1198
- the model class. See model.JsonModel.response() as an example.
1199
- """
1200
- self.resp = resp
1201
- self.content = content
1202
- self.postproc = postproc
1203
- if resp is None:
1204
- self.resp = httplib2.Response({'status': 200, 'reason': 'OK'})
1205
- if 'reason' in self.resp:
1206
- self.resp.reason = self.resp['reason']
1207
-
1208
- def execute(self, http=None):
1209
- """Execute the request.
1210
-
1211
- Same behavior as HttpRequest.execute(), but the response is
1212
- mocked and not really from an HTTP request/response.
1213
- """
1214
- return self.postproc(self.resp, self.content)
1215
-
1216
-
1217
- class RequestMockBuilder(object):
1218
- """A simple mock of HttpRequest
1219
-
1220
- Pass in a dictionary to the constructor that maps request methodIds to
1221
- tuples of (httplib2.Response, content, opt_expected_body) that should be
1222
- returned when that method is called. None may also be passed in for the
1223
- httplib2.Response, in which case a 200 OK response will be generated.
1224
- If an opt_expected_body (str or dict) is provided, it will be compared to
1225
- the body and UnexpectedBodyError will be raised on inequality.
1226
-
1227
- Example:
1228
- response = '{"data": {"id": "tag:google.c...'
1229
- requestBuilder = RequestMockBuilder(
1230
- {
1231
- 'plus.activities.get': (None, response),
1232
- }
1233
- )
1234
- apiclient.discovery.build("plus", "v1", requestBuilder=requestBuilder)
1235
-
1236
- Methods that you do not supply a response for will return a
1237
- 200 OK with an empty string as the response content or raise an excpetion
1238
- if check_unexpected is set to True. The methodId is taken from the rpcName
1239
- in the discovery document.
1240
-
1241
- For more details see the project wiki.
1242
- """
1243
-
1244
- def __init__(self, responses, check_unexpected=False):
1245
- """Constructor for RequestMockBuilder
1246
-
1247
- The constructed object should be a callable object
1248
- that can replace the class HttpResponse.
1249
-
1250
- responses - A dictionary that maps methodIds into tuples
1251
- of (httplib2.Response, content). The methodId
1252
- comes from the 'rpcName' field in the discovery
1253
- document.
1254
- check_unexpected - A boolean setting whether or not UnexpectedMethodError
1255
- should be raised on unsupplied method.
1256
- """
1257
- self.responses = responses
1258
- self.check_unexpected = check_unexpected
1259
-
1260
- def __call__(self, http, postproc, uri, method='GET', body=None,
1261
- headers=None, methodId=None, resumable=None):
1262
- """Implements the callable interface that discovery.build() expects
1263
- of requestBuilder, which is to build an object compatible with
1264
- HttpRequest.execute(). See that method for the description of the
1265
- parameters and the expected response.
1266
- """
1267
- if methodId in self.responses:
1268
- response = self.responses[methodId]
1269
- resp, content = response[:2]
1270
- if len(response) > 2:
1271
- # Test the body against the supplied expected_body.
1272
- expected_body = response[2]
1273
- if bool(expected_body) != bool(body):
1274
- # Not expecting a body and provided one
1275
- # or expecting a body and not provided one.
1276
- raise UnexpectedBodyError(expected_body, body)
1277
- if isinstance(expected_body, str):
1278
- expected_body = simplejson.loads(expected_body)
1279
- body = simplejson.loads(body)
1280
- if body != expected_body:
1281
- raise UnexpectedBodyError(expected_body, body)
1282
- return HttpRequestMock(resp, content, postproc)
1283
- elif self.check_unexpected:
1284
- raise UnexpectedMethodError(methodId)
1285
- else:
1286
- model = JsonModel(False)
1287
- return HttpRequestMock(None, '{}', model.response)
1288
-
1289
-
1290
- class HttpMock(object):
1291
- """Mock of httplib2.Http"""
1292
-
1293
- def __init__(self, filename, headers=None):
1294
- """
1295
- Args:
1296
- filename: string, absolute filename to read response from
1297
- headers: dict, header to return with response
1298
- """
1299
- if headers is None:
1300
- headers = {'status': '200 OK'}
1301
- f = file(filename, 'r')
1302
- self.data = f.read()
1303
- f.close()
1304
- self.headers = headers
1305
-
1306
- def request(self, uri,
1307
- method='GET',
1308
- body=None,
1309
- headers=None,
1310
- redirections=1,
1311
- connection_type=None):
1312
- return httplib2.Response(self.headers), self.data
1313
-
1314
-
1315
- class HttpMockSequence(object):
1316
- """Mock of httplib2.Http
1317
-
1318
- Mocks a sequence of calls to request returning different responses for each
1319
- call. Create an instance initialized with the desired response headers
1320
- and content and then use as if an httplib2.Http instance.
1321
-
1322
- http = HttpMockSequence([
1323
- ({'status': '401'}, ''),
1324
- ({'status': '200'}, '{"access_token":"1/3w","expires_in":3600}'),
1325
- ({'status': '200'}, 'echo_request_headers'),
1326
- ])
1327
- resp, content = http.request("http://examples.com")
1328
-
1329
- There are special values you can pass in for content to trigger
1330
- behavours that are helpful in testing.
1331
-
1332
- 'echo_request_headers' means return the request headers in the response body
1333
- 'echo_request_headers_as_json' means return the request headers in
1334
- the response body
1335
- 'echo_request_body' means return the request body in the response body
1336
- 'echo_request_uri' means return the request uri in the response body
1337
- """
1338
-
1339
- def __init__(self, iterable):
1340
- """
1341
- Args:
1342
- iterable: iterable, a sequence of pairs of (headers, body)
1343
- """
1344
- self._iterable = iterable
1345
- self.follow_redirects = True
1346
-
1347
- def request(self, uri,
1348
- method='GET',
1349
- body=None,
1350
- headers=None,
1351
- redirections=1,
1352
- connection_type=None):
1353
- resp, content = self._iterable.pop(0)
1354
- if content == 'echo_request_headers':
1355
- content = headers
1356
- elif content == 'echo_request_headers_as_json':
1357
- content = simplejson.dumps(headers)
1358
- elif content == 'echo_request_body':
1359
- content = body
1360
- elif content == 'echo_request_uri':
1361
- content = uri
1362
- return httplib2.Response(resp), content
1363
-
1364
-
1365
- def set_user_agent(http, user_agent):
1366
- """Set the user-agent on every request.
1367
-
1368
- Args:
1369
- http - An instance of httplib2.Http
1370
- or something that acts like it.
1371
- user_agent: string, the value for the user-agent header.
1372
-
1373
- Returns:
1374
- A modified instance of http that was passed in.
1375
-
1376
- Example:
1377
-
1378
- h = httplib2.Http()
1379
- h = set_user_agent(h, "my-app-name/6.0")
1380
-
1381
- Most of the time the user-agent will be set doing auth, this is for the rare
1382
- cases where you are accessing an unauthenticated endpoint.
1383
- """
1384
- request_orig = http.request
1385
-
1386
- # The closure that will replace 'httplib2.Http.request'.
1387
- def new_request(uri, method='GET', body=None, headers=None,
1388
- redirections=httplib2.DEFAULT_MAX_REDIRECTS,
1389
- connection_type=None):
1390
- """Modify the request headers to add the user-agent."""
1391
- if headers is None:
1392
- headers = {}
1393
- if 'user-agent' in headers:
1394
- headers['user-agent'] = user_agent + ' ' + headers['user-agent']
1395
- else:
1396
- headers['user-agent'] = user_agent
1397
- resp, content = request_orig(uri, method, body, headers,
1398
- redirections, connection_type)
1399
- return resp, content
1400
-
1401
- http.request = new_request
1402
- return http
1403
-
1404
-
1405
- def tunnel_patch(http):
1406
- """Tunnel PATCH requests over POST.
1407
- Args:
1408
- http - An instance of httplib2.Http
1409
- or something that acts like it.
1410
-
1411
- Returns:
1412
- A modified instance of http that was passed in.
1413
-
1414
- Example:
1415
-
1416
- h = httplib2.Http()
1417
- h = tunnel_patch(h, "my-app-name/6.0")
1418
-
1419
- Useful if you are running on a platform that doesn't support PATCH.
1420
- Apply this last if you are using OAuth 1.0, as changing the method
1421
- will result in a different signature.
1422
- """
1423
- request_orig = http.request
1424
-
1425
- # The closure that will replace 'httplib2.Http.request'.
1426
- def new_request(uri, method='GET', body=None, headers=None,
1427
- redirections=httplib2.DEFAULT_MAX_REDIRECTS,
1428
- connection_type=None):
1429
- """Modify the request headers to add the user-agent."""
1430
- if headers is None:
1431
- headers = {}
1432
- if method == 'PATCH':
1433
- if 'oauth_token' in headers.get('authorization', ''):
1434
- logging.warning(
1435
- 'OAuth 1.0 request made with Credentials after tunnel_patch.')
1436
- headers['x-http-method-override'] = "PATCH"
1437
- method = 'POST'
1438
- resp, content = request_orig(uri, method, body, headers,
1439
- redirections, connection_type)
1440
- return resp, content
1441
-
1442
- http.request = new_request
1443
- return http