NOTICE 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. Tablib includes some vendorized python libraries: ordereddict, odfpy, pyyaml,
  2. simplejson, unicodecsv, xlrd, xlrd3, xlwt, and xlwt3.
  3. Markup License
  4. ==============
  5. Markup is in the public domain.
  6. Odfpy License
  7. =============
  8. Apache License
  9. Version 2.0, January 2004
  10. http://www.apache.org/licenses/
  11. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  12. 1. Definitions.
  13. "License" shall mean the terms and conditions for use, reproduction,
  14. and distribution as defined by Sections 1 through 9 of this document.
  15. "Licensor" shall mean the copyright owner or entity authorized by
  16. the copyright owner that is granting the License.
  17. "Legal Entity" shall mean the union of the acting entity and all
  18. other entities that control, are controlled by, or are under common
  19. control with that entity. For the purposes of this definition,
  20. "control" means (i) the power, direct or indirect, to cause the
  21. direction or management of such entity, whether by contract or
  22. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  23. outstanding shares, or (iii) beneficial ownership of such entity.
  24. "You" (or "Your") shall mean an individual or Legal Entity
  25. exercising permissions granted by this License.
  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. "Object" form shall mean any form resulting from mechanical
  30. transformation or translation of a Source form, including but
  31. not limited to compiled object code, generated documentation,
  32. and conversions to other media types.
  33. "Work" shall mean the work of authorship, whether in Source or
  34. Object form, made available under the License, as indicated by a
  35. copyright notice that is included in or attached to the work
  36. (an example is provided in the Appendix below).
  37. "Derivative Works" shall mean any work, whether in Source or Object
  38. form, that is based on (or derived from) the Work and for which the
  39. editorial revisions, annotations, elaborations, or other modifications
  40. represent, as a whole, an original work of authorship. For the purposes
  41. of this License, Derivative Works shall not include works that remain
  42. separable from, or merely link (or bind by name) to the interfaces of,
  43. the Work and Derivative Works thereof.
  44. "Contribution" shall mean any work of authorship, including
  45. the original version of the Work and any modifications or additions
  46. to that Work or Derivative Works thereof, that is intentionally
  47. submitted to Licensor for inclusion in the Work by the copyright owner
  48. or by an individual or Legal Entity authorized to submit on behalf of
  49. the copyright owner. For the purposes of this definition, "submitted"
  50. means any form of electronic, verbal, or written communication sent
  51. to the Licensor or its representatives, including but not limited to
  52. communication on electronic mailing lists, source code control systems,
  53. and issue tracking systems that are managed by, or on behalf of, the
  54. Licensor for the purpose of discussing and improving the Work, but
  55. excluding communication that is conspicuously marked or otherwise
  56. designated in writing by the copyright owner as "Not a Contribution."
  57. "Contributor" shall mean Licensor and any individual or Legal Entity
  58. on behalf of whom a Contribution has been received by Licensor and
  59. subsequently incorporated within the Work.
  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. 3. Grant of Patent License. Subject to the terms and conditions of
  67. this License, each Contributor hereby grants to You a perpetual,
  68. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  69. (except as stated in this section) patent license to make, have made,
  70. use, offer to sell, sell, import, and otherwise transfer the Work,
  71. where such license applies only to those patent claims licensable
  72. by such Contributor that are necessarily infringed by their
  73. Contribution(s) alone or by combination of their Contribution(s)
  74. with the Work to which such Contribution(s) was submitted. If You
  75. institute patent litigation against any entity (including a
  76. cross-claim or counterclaim in a lawsuit) alleging that the Work
  77. or a Contribution incorporated within the Work constitutes direct
  78. or contributory patent infringement, then any patent licenses
  79. granted to You under this License for that Work shall terminate
  80. as of the date such litigation is filed.
  81. 4. Redistribution. You may reproduce and distribute copies of the
  82. Work or Derivative Works thereof in any medium, with or without
  83. modifications, and in Source or Object form, provided that You
  84. meet the following conditions:
  85. (a) You must give any other recipients of the Work or
  86. Derivative Works a copy of this License; and
  87. (b) You must cause any modified files to carry prominent notices
  88. stating that You changed the files; and
  89. (c) You must retain, in the Source form of any Derivative Works
  90. that You distribute, all copyright, patent, trademark, and
  91. attribution notices from the Source form of the Work,
  92. excluding those notices that do not pertain to any part of
  93. the Derivative Works; and
  94. (d) If the Work includes a "NOTICE" text file as part of its
  95. distribution, then any Derivative Works that You distribute must
  96. include a readable copy of the attribution notices contained
  97. within such NOTICE file, excluding those notices that do not
  98. pertain to any part of the Derivative Works, in at least one
  99. of the following places: within a NOTICE text file distributed
  100. as part of the Derivative Works; within the Source form or
  101. documentation, if provided along with the Derivative Works; or,
  102. within a display generated by the Derivative Works, if and
  103. wherever such third-party notices normally appear. The contents
  104. of the NOTICE file are for informational purposes only and
  105. do not modify the License. You may add Your own attribution
  106. notices within Derivative Works that You distribute, alongside
  107. or as an addendum to the NOTICE text from the Work, provided
  108. that such additional attribution notices cannot be construed
  109. as modifying the License.
  110. You may add Your own copyright statement to Your modifications and
  111. may provide additional or different license terms and conditions
  112. for use, reproduction, or distribution of Your modifications, or
  113. for any such Derivative Works as a whole, provided Your use,
  114. reproduction, and distribution of the Work otherwise complies with
  115. the conditions stated in this License.
  116. 5. Submission of Contributions. Unless You explicitly state otherwise,
  117. any Contribution intentionally submitted for inclusion in the Work
  118. by You to the Licensor shall be under the terms and conditions of
  119. this License, without any additional terms or conditions.
  120. Notwithstanding the above, nothing herein shall supersede or modify
  121. the terms of any separate license agreement you may have executed
  122. with Licensor regarding such Contributions.
  123. 6. Trademarks. This License does not grant permission to use the trade
  124. names, trademarks, service marks, or product names of the Licensor,
  125. except as required for reasonable and customary use in describing the
  126. origin of the Work and reproducing the content of the NOTICE file.
  127. 7. Disclaimer of Warranty. Unless required by applicable law or
  128. agreed to in writing, Licensor provides the Work (and each
  129. Contributor provides its Contributions) on an "AS IS" BASIS,
  130. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  131. implied, including, without limitation, any warranties or conditions
  132. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  133. PARTICULAR PURPOSE. You are solely responsible for determining the
  134. appropriateness of using or redistributing the Work and assume any
  135. risks associated with Your exercise of permissions under this License.
  136. 8. Limitation of Liability. In no event and under no legal theory,
  137. whether in tort (including negligence), contract, or otherwise,
  138. unless required by applicable law (such as deliberate and grossly
  139. negligent acts) or agreed to in writing, shall any Contributor be
  140. liable to You for damages, including any direct, indirect, special,
  141. incidental, or consequential damages of any character arising as a
  142. result of this License or out of the use or inability to use the
  143. Work (including but not limited to damages for loss of goodwill,
  144. work stoppage, computer failure or malfunction, or any and all
  145. other commercial damages or losses), even if such Contributor
  146. has been advised of the possibility of such damages.
  147. 9. Accepting Warranty or Additional Liability. While redistributing
  148. the Work or Derivative Works thereof, You may choose to offer,
  149. and charge a fee for, acceptance of support, warranty, indemnity,
  150. or other liability obligations and/or rights consistent with this
  151. License. However, in accepting such obligations, You may act only
  152. on Your own behalf and on Your sole responsibility, not on behalf
  153. of any other Contributor, and only if You agree to indemnify,
  154. defend, and hold each Contributor harmless for any liability
  155. incurred by, or claims asserted against, such Contributor by reason
  156. of your accepting any such warranty or additional liability.
  157. END OF TERMS AND CONDITIONS
  158. APPENDIX: How to apply the Apache License to your work.
  159. To apply the Apache License to your work, attach the following
  160. boilerplate notice, with the fields enclosed by brackets "[]"
  161. replaced with your own identifying information. (Don't include
  162. the brackets!) The text should be enclosed in the appropriate
  163. comment syntax for the file format. We also recommend that a
  164. file or class name and description of purpose be included on the
  165. same "printed page" as the copyright notice for easier
  166. identification within third-party archives.
  167. Copyright [yyyy] [name of copyright owner]
  168. Licensed under the Apache License, Version 2.0 (the "License");
  169. you may not use this file except in compliance with the License.
  170. You may obtain a copy of the License at
  171. http://www.apache.org/licenses/LICENSE-2.0
  172. Unless required by applicable law or agreed to in writing, software
  173. distributed under the License is distributed on an "AS IS" BASIS,
  174. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  175. See the License for the specific language governing permissions and
  176. limitations under the License.
  177. OrderedDict License
  178. ===================
  179. Copyright (c) 2009 Raymond Hettinger
  180. Permission is hereby granted, free of charge, to any person
  181. obtaining a copy of this software and associated documentation files
  182. (the "Software"), to deal in the Software without restriction,
  183. including without limitation the rights to use, copy, modify, merge,
  184. publish, distribute, sublicense, and/or sell copies of the Software,
  185. and to permit persons to whom the Software is furnished to do so,
  186. subject to the following conditions:
  187. The above copyright notice and this permission notice shall be
  188. included in all copies or substantial portions of the Software.
  189. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  190. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  191. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  192. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  193. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  194. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  195. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  196. OTHER DEALINGS IN THE SOFTWARE.
  197. PyYAML License
  198. ==============
  199. Copyright (c) 2006 Kirill Simonov
  200. Permission is hereby granted, free of charge, to any person obtaining a copy of
  201. this software and associated documentation files (the "Software"), to deal in
  202. the Software without restriction, including without limitation the rights to
  203. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  204. of the Software, and to permit persons to whom the Software is furnished to do
  205. so, subject to the following conditions:
  206. The above copyright notice and this permission notice shall be included in all
  207. copies or substantial portions of the Software.
  208. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  209. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  210. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  211. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  212. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  213. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  214. SOFTWARE.
  215. UnicodeCSV License
  216. ==================
  217. Copyright 2010 Jeremy Dunck. All rights reserved.
  218. Redistribution and use in source and binary forms, with or without modification, are
  219. permitted provided that the following conditions are met:
  220. 1. Redistributions of source code must retain the above copyright notice, this list of
  221. conditions and the following disclaimer.
  222. 2. Redistributions in binary form must reproduce the above copyright notice, this list
  223. of conditions and the following disclaimer in the documentation and/or other materials
  224. provided with the distribution.
  225. THIS SOFTWARE IS PROVIDED BY JEREMY DUNCK ``AS IS'' AND ANY EXPRESS OR IMPLIED
  226. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  227. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JEREMY DUNCK OR
  228. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  229. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  230. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  231. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  232. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  233. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  234. The views and conclusions contained in the software and documentation are those of the
  235. authors and should not be interpreted as representing official policies, either expressed
  236. or implied, of Jeremy Dunck.
  237. XLWT (and XLWT3) License
  238. ========================
  239. Portions copyright © 2007, Stephen John Machin, Lingfo Pty Ltd
  240. All rights reserved.
  241. Redistribution and use in source and binary forms, with or without
  242. modification, are permitted provided that the following conditions are met:
  243. 1. Redistributions of source code must retain the above copyright notice,
  244. this list of conditions and the following disclaimer.
  245. 2. Redistributions in binary form must reproduce the above copyright notice,
  246. this list of conditions and the following disclaimer in the documentation
  247. and/or other materials provided with the distribution.
  248. 3. None of the names of Stephen John Machin, Lingfo Pty Ltd and any
  249. contributors may be used to endorse or promote products derived from this
  250. software without specific prior written permission.
  251. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  252. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  253. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  254. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  255. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  256. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  257. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  258. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  259. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  260. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  261. THE POSSIBILITY OF SUCH DAMAGE.
  262. """
  263. """
  264. Copyright (C) 2005 Roman V. Kiseliov
  265. All rights reserved.
  266. Redistribution and use in source and binary forms, with or without
  267. modification, are permitted provided that the following conditions
  268. are met:
  269. 1. Redistributions of source code must retain the above copyright
  270. notice, this list of conditions and the following disclaimer.
  271. 2. Redistributions in binary form must reproduce the above copyright
  272. notice, this list of conditions and the following disclaimer in
  273. the documentation and/or other materials provided with the
  274. distribution.
  275. 3. All advertising materials mentioning features or use of this
  276. software must display the following acknowledgment:
  277. "This product includes software developed by
  278. Roman V. Kiseliov <roman@kiseliov.ru>."
  279. 4. Redistributions of any form whatsoever must retain the following
  280. acknowledgment:
  281. "This product includes software developed by
  282. Roman V. Kiseliov <roman@kiseliov.ru>."
  283. THIS SOFTWARE IS PROVIDED BY Roman V. Kiseliov ``AS IS'' AND ANY
  284. EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  285. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  286. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Roman V. Kiseliov OR
  287. ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  288. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  289. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  290. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  291. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  292. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  293. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  294. OF THE POSSIBILITY OF SUCH DAMAGE.
  295. Roman V. Kiseliov
  296. Russia
  297. Kursk
  298. Libknecht St., 4
  299. +7(0712)56-09-83
  300. <roman@kiseliov.ru>
  301. Subject: pyExcelerator
  302. XLRD (and XLRD3) License
  303. ========================
  304. Portions copyright © 2005-2009, Stephen John Machin, Lingfo Pty Ltd
  305. All rights reserved.
  306. Redistribution and use in source and binary forms, with or without
  307. modification, are permitted provided that the following conditions are met:
  308. 1. Redistributions of source code must retain the above copyright notice,
  309. this list of conditions and the following disclaimer.
  310. 2. Redistributions in binary form must reproduce the above copyright notice,
  311. this list of conditions and the following disclaimer in the documentation
  312. and/or other materials provided with the distribution.
  313. 3. None of the names of Stephen John Machin, Lingfo Pty Ltd and any
  314. contributors may be used to endorse or promote products derived from this
  315. software without specific prior written permission.
  316. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  317. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  318. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  319. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  320. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  321. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  322. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  323. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  324. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  325. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  326. THE POSSIBILITY OF SUCH DAMAGE.
  327. Copyright (c) 2001 David Giffin.
  328. All rights reserved.
  329. Based on the the Java version: Andrew Khan Copyright (c) 2000.
  330. Redistribution and use in source and binary forms, with or without
  331. modification, are permitted provided that the following conditions
  332. are met:
  333. 1. Redistributions of source code must retain the above copyright
  334. notice, this list of conditions and the following disclaimer.
  335. 2. Redistributions in binary form must reproduce the above copyright
  336. notice, this list of conditions and the following disclaimer in
  337. the documentation and/or other materials provided with the
  338. distribution.
  339. 3. All advertising materials mentioning features or use of this
  340. software must display the following acknowledgment:
  341. "This product includes software developed by
  342. David Giffin <david@giffin.org>."
  343. 4. Redistributions of any form whatsoever must retain the following
  344. acknowledgment:
  345. "This product includes software developed by
  346. David Giffin <david@giffin.org>."
  347. THIS SOFTWARE IS PROVIDED BY DAVID GIFFIN ``AS IS'' AND ANY
  348. EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  349. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  350. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID GIFFIN OR
  351. ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  352. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  353. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  354. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  355. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  356. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  357. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  358. OF THE POSSIBILITY OF SUCH DAMAGE.