britecore-sdk 1.5.2__tar.gz

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 (150) hide show
  1. britecore_sdk-1.5.2/LICENSE +165 -0
  2. britecore_sdk-1.5.2/PKG-INFO +557 -0
  3. britecore_sdk-1.5.2/README.md +505 -0
  4. britecore_sdk-1.5.2/pyproject.toml +120 -0
  5. britecore_sdk-1.5.2/setup.cfg +4 -0
  6. britecore_sdk-1.5.2/setup.py +10 -0
  7. britecore_sdk-1.5.2/src/britecore_sdk/__init__.py +169 -0
  8. britecore_sdk-1.5.2/src/britecore_sdk/api/__init__.py +14 -0
  9. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/__init__.py +369 -0
  10. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/__init__.py +23 -0
  11. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/contacts.py +241 -0
  12. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/custom_ui.py +90 -0
  13. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/deliverables.py +66 -0
  14. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/notes.py +38 -0
  15. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/payments.py +64 -0
  16. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/policies.py +122 -0
  17. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/printing.py +122 -0
  18. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v1/reports.py +38 -0
  19. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/__init__.py +375 -0
  20. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/_common.py +35 -0
  21. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/accounting.py +210 -0
  22. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/agentcy.py +53 -0
  23. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/async_contacts.py +215 -0
  24. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/async_lines.py +179 -0
  25. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/async_policies.py +695 -0
  26. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/async_quotes.py +91 -0
  27. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/attachments.py +323 -0
  28. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/auth.py +35 -0
  29. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/authority_limits.py +125 -0
  30. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/background_jobs.py +35 -0
  31. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/billing.py +111 -0
  32. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_adjuster_assignment_configs.py +74 -0
  33. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_catastrophes.py +126 -0
  34. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_changes.py +35 -0
  35. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_contacts.py +89 -0
  36. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_dates.py +89 -0
  37. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_estimations.py +107 -0
  38. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_exposures.py +365 -0
  39. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_injuries.py +107 -0
  40. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_properties.py +107 -0
  41. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claim_vehicles.py +125 -0
  42. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/claims.py +591 -0
  43. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/commissions.py +401 -0
  44. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/configurations.py +89 -0
  45. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/contacts.py +1493 -0
  46. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/coverages.py +215 -0
  47. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/custom_data.py +125 -0
  48. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/dashboards.py +193 -0
  49. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/data.py +163 -0
  50. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/deliverables.py +649 -0
  51. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/disputes.py +89 -0
  52. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/drivers.py +143 -0
  53. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/errors.py +33 -0
  54. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/files.py +69 -0
  55. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/geometries.py +107 -0
  56. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/geometry.py +35 -0
  57. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/imports.py +60 -0
  58. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/ingestion_job.py +107 -0
  59. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/inspections.py +126 -0
  60. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/insured.py +323 -0
  61. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/intacct.py +122 -0
  62. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/integrations.py +280 -0
  63. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/jobrunner.py +44 -0
  64. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/lines.py +893 -0
  65. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/named_insureds.py +161 -0
  66. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/nightly_jobs.py +125 -0
  67. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/notes.py +98 -0
  68. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/notifications.py +66 -0
  69. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/payments.py +900 -0
  70. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/permissions.py +35 -0
  71. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/policies.py +2884 -0
  72. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/policy_types.py +179 -0
  73. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/premium_finance_companies.py +107 -0
  74. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/prior_policies.py +53 -0
  75. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/quick_code_values.py +53 -0
  76. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/quick_codes.py +53 -0
  77. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/quick_quote_templates.py +188 -0
  78. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/quote.py +413 -0
  79. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/quotes.py +569 -0
  80. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/related_policies.py +53 -0
  81. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/reports.py +352 -0
  82. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/return_premium.py +112 -0
  83. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/rules.py +90 -0
  84. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/search.py +55 -0
  85. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/settings.py +539 -0
  86. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/signatures.py +189 -0
  87. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/statement_of_value.py +221 -0
  88. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/subjectivities.py +198 -0
  89. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/suspensions.py +144 -0
  90. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/tasks.py +179 -0
  91. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/term_credit_scores.py +53 -0
  92. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/uploads.py +89 -0
  93. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/user_groups.py +107 -0
  94. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/utils.py +630 -0
  95. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/vehicles.py +253 -0
  96. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/vendors.py +448 -0
  97. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/violations.py +179 -0
  98. britecore_sdk-1.5.2/src/britecore_sdk/api/api_calls/v2/watercrafts.py +125 -0
  99. britecore_sdk-1.5.2/src/britecore_sdk/api/britecore_api_client.py +1232 -0
  100. britecore_sdk-1.5.2/src/britecore_sdk/api/britecore_async_api_client.py +488 -0
  101. britecore_sdk-1.5.2/src/britecore_sdk/api/britecore_oauth_token_manager.py +116 -0
  102. britecore_sdk-1.5.2/src/britecore_sdk/api/rate_limiter.py +249 -0
  103. britecore_sdk-1.5.2/src/britecore_sdk/api/request_cache.py +150 -0
  104. britecore_sdk-1.5.2/src/britecore_sdk/api/types.py +156 -0
  105. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/__init__.py +96 -0
  106. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/async_batch_contacts.py +128 -0
  107. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/async_batch_policies.py +236 -0
  108. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/async_batch_quotes.py +119 -0
  109. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/async_staged_creation.py +362 -0
  110. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/batch_contacts.py +123 -0
  111. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/batch_policies.py +224 -0
  112. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/batch_quotes.py +115 -0
  113. britecore_sdk-1.5.2/src/britecore_sdk/api/workflows/staged_creation.py +433 -0
  114. britecore_sdk-1.5.2/src/britecore_sdk/base_logger.py +68 -0
  115. britecore_sdk-1.5.2/src/britecore_sdk/classes/__init__.py +6 -0
  116. britecore_sdk-1.5.2/src/britecore_sdk/constants.py +9 -0
  117. britecore_sdk-1.5.2/src/britecore_sdk/exceptions.py +249 -0
  118. britecore_sdk-1.5.2/src/britecore_sdk/maps/__init__.py +145 -0
  119. britecore_sdk-1.5.2/src/britecore_sdk/models/__init__.py +7 -0
  120. britecore_sdk-1.5.2/src/britecore_sdk/models/contact.py +102 -0
  121. britecore_sdk-1.5.2/src/britecore_sdk/models/policy.py +38 -0
  122. britecore_sdk-1.5.2/src/britecore_sdk/models/quote.py +53 -0
  123. britecore_sdk-1.5.2/src/britecore_sdk/py.typed +0 -0
  124. britecore_sdk-1.5.2/src/britecore_sdk/resources/__init__.py +0 -0
  125. britecore_sdk-1.5.2/src/britecore_sdk/resources/zip_codes.csv +41484 -0
  126. britecore_sdk-1.5.2/src/britecore_sdk/settings/__init__.py +13 -0
  127. britecore_sdk-1.5.2/src/britecore_sdk/settings/config.py +211 -0
  128. britecore_sdk-1.5.2/src/britecore_sdk/settings/defaults.py +67 -0
  129. britecore_sdk-1.5.2/src/britecore_sdk/utils/__init__.py +0 -0
  130. britecore_sdk-1.5.2/src/britecore_sdk/utils/_config_common.py +236 -0
  131. britecore_sdk-1.5.2/src/britecore_sdk/utils/check_api_spec_sync.py +118 -0
  132. britecore_sdk-1.5.2/src/britecore_sdk/utils/check_site_configs.py +166 -0
  133. britecore_sdk-1.5.2/src/britecore_sdk/utils/check_test_data.py +41 -0
  134. britecore_sdk-1.5.2/src/britecore_sdk/utils/config_manager.py +735 -0
  135. britecore_sdk-1.5.2/src/britecore_sdk/utils/generate_spec_wrappers.py +533 -0
  136. britecore_sdk-1.5.2/src/britecore_sdk/utils/healthcheck.py +152 -0
  137. britecore_sdk-1.5.2/src/britecore_sdk/utils/interactive_menu.py +269 -0
  138. britecore_sdk-1.5.2/src/britecore_sdk/utils/policy_helpers.py +40 -0
  139. britecore_sdk-1.5.2/src/britecore_sdk/utils/run_all_checks.py +35 -0
  140. britecore_sdk-1.5.2/src/britecore_sdk/utils/zip_code_lookup.py +89 -0
  141. britecore_sdk-1.5.2/src/britecore_sdk/validators/__init__.py +21 -0
  142. britecore_sdk-1.5.2/src/britecore_sdk/validators/address_validator.py +687 -0
  143. britecore_sdk-1.5.2/src/britecore_sdk/validators/email_validator.py +147 -0
  144. britecore_sdk-1.5.2/src/britecore_sdk/validators/name_validator.py +92 -0
  145. britecore_sdk-1.5.2/src/britecore_sdk/validators/phone_validator.py +167 -0
  146. britecore_sdk-1.5.2/src/britecore_sdk.egg-info/PKG-INFO +557 -0
  147. britecore_sdk-1.5.2/src/britecore_sdk.egg-info/SOURCES.txt +148 -0
  148. britecore_sdk-1.5.2/src/britecore_sdk.egg-info/dependency_links.txt +1 -0
  149. britecore_sdk-1.5.2/src/britecore_sdk.egg-info/requires.txt +29 -0
  150. britecore_sdk-1.5.2/src/britecore_sdk.egg-info/top_level.txt +1 -0
@@ -0,0 +1,165 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined in Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
24
+ permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, made available under the
36
+ License, as indicated by a copyright notice that is included in or
37
+ attached to the work (an example is provided in the Appendix below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship, thus including
43
+ but not limited to any source code and documentation and any binary
44
+ outputs of such work.
45
+
46
+ "Contribution" shall mean any work of authorship, including
47
+ the original Work and any Derivative Works thereof, submitted to,
48
+ processed by, or incorporated within the Work by Licensor or by
49
+ any Legal Entity on behalf of Licensor.
50
+
51
+ "Contributor" shall mean Licensor and any Legal Entity on behalf
52
+ of which a Contribution has been received by Licensor and
53
+ subsequently incorporated within the Work.
54
+
55
+ "Licensed Patents" shall mean the patent claims of a Contributor
56
+ to the extent they are infringed by the use or sale of the Work
57
+ or a Derivative Work thereof as it existed on the date the
58
+ Contribution was first submitted to Licensor.
59
+
60
+ 2. Grant of Copyright License. Subject to the terms and conditions of
61
+ this License, each Contributor hereby grants to You a perpetual,
62
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
63
+ copyright license to reproduce, prepare Derivative Works of,
64
+ publicly display, publicly perform, sublicense, and distribute the
65
+ Work and such Derivative Works in Source or Object form.
66
+
67
+ 3. Grant of Patent License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ (except as stated in this section) patent license to make, have made,
71
+ use, offer to sell, sell, import, and otherwise transfer the Work,
72
+ where such license applies only to those patent claims licensable
73
+ by such Contributor that are necessarily infringed by their
74
+ Contribution(s) alone or by combination of their Contribution(s)
75
+ with the Work to which such Contribution(s) was submitted.
76
+
77
+ 4. Redistribution. You may reproduce and distribute copies of the
78
+ Work or Derivative Works thereof in any medium, with or without
79
+ modifications, and in Source or Object form, provided that You
80
+ meet the following conditions:
81
+
82
+ (a) You must give any other recipients of the Work or Derivative
83
+ Works a copy of this License; and
84
+
85
+ (b) You must cause any modified files to carry prominent notices
86
+ stating that You changed the files; and
87
+
88
+ (c) You must retain, in the Source form of any Derivative Works
89
+ that You distribute, all copyright, patent, trademark, and
90
+ attribution notices from the Source form of the Work,
91
+ excluding those notices that do not pertain to any part of
92
+ the Derivative Works; and
93
+
94
+ (d) If the Work includes a "NOTICE" text file, then any
95
+ Derivative Works that You distribute must include a readable
96
+ copy of the attribution notices contained within such NOTICE
97
+ file, excluding those notices that do not pertain to any part
98
+ of the Derivative Works, in at least one of the following
99
+ places: within a NOTICE text file distributed as part of the
100
+ Derivative Works; within the Source form or documentation,
101
+ if provided along with the Derivative Works; or, within a
102
+ display generated by the Derivative Works, if and wherever
103
+ such third-party notices normally appear.
104
+
105
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
106
+ any Contribution intentionally submitted for inclusion in the Work
107
+ by You to Licensor shall be under the terms and conditions of
108
+ this License, without any additional terms or conditions.
109
+ Notwithstanding the above, nothing herein shall supersede or modify
110
+ the terms of any separate license agreement you may have executed
111
+ with Licensor regarding such Contributions.
112
+
113
+ 6. Trademarks. This License does not grant permission to use the trade
114
+ names, trademarks, service marks, or product names of the Licensor,
115
+ except as required for reasonable and customary use in describing the
116
+ origin of the Work and reproducing the content of the NOTICE file.
117
+
118
+ 7. Disclaimer of Warranty. Unless required by applicable law or
119
+ agreed to in writing, Licensor provides the Work (and each
120
+ Contributor provides its Contributions) on an "AS IS" BASIS,
121
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
122
+ implied, including, without limitation, any warranties or conditions
123
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
124
+ PARTICULAR PURPOSE. You are solely responsible for determining the
125
+ appropriateness of using or redistributing the Work and assume any
126
+ risks associated with Your exercise of permissions under this License.
127
+
128
+ 8. Limitation of Liability. In no event and under no legal theory,
129
+ whether in tort (including negligence), contract, or otherwise,
130
+ unless required by applicable law (such as deliberate and grossly
131
+ negligent acts) or agreed to in writing, shall any Contributor be
132
+ liable to You for damages, including any direct, indirect, special,
133
+ incidental, or consequential damages of any character arising as a
134
+ result of this License or out of the use or inability to use the
135
+ Work (including but not limited to damages for loss of goodwill,
136
+ work stoppage, computer failure or malfunction, or any and all
137
+ other commercial damages or losses), even if such Contributor
138
+ has been advised of the possibility of such damages.
139
+
140
+ 9. Accepting Warranty or Additional Liability. While redistributing
141
+ the Work or Derivative Works thereof, You may choose to offer,
142
+ and charge a fee for, acceptance of support, warranty, indemnity,
143
+ or other liability obligations and/or rights consistent with this
144
+ License. However, in accepting such obligations, You may act only
145
+ on Your own behalf and on Your sole responsibility, not on behalf
146
+ of any other Contributor, and only if You agree to indemnify,
147
+ defend, and hold each Contributor harmless for any liability
148
+ incurred by, or claims asserted against, such Contributor by reason
149
+ of your accepting any such warranty or additional liability.
150
+
151
+ END OF TERMS AND CONDITIONS
152
+
153
+ Copyright 2026 britecore_sdk contributors
154
+
155
+ Licensed under the Apache License, Version 2.0 (the "License");
156
+ you may not use this file except in compliance with the License.
157
+ You may obtain a copy of the License at
158
+
159
+ http://www.apache.org/licenses/LICENSE-2.0
160
+
161
+ Unless required by applicable law or agreed to in writing, software
162
+ distributed under the License is distributed on an "AS IS" BASIS,
163
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
164
+ See the License for the specific language governing permissions and
165
+ limitations under the License.