pyxllib 0.3.197__py3-none-any.whl → 0.3.200__py3-none-any.whl

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 (126) hide show
  1. pyxllib/__init__.py +21 -21
  2. pyxllib/algo/__init__.py +8 -8
  3. pyxllib/algo/disjoint.py +54 -54
  4. pyxllib/algo/geo.py +541 -541
  5. pyxllib/algo/intervals.py +964 -964
  6. pyxllib/algo/matcher.py +389 -389
  7. pyxllib/algo/newbie.py +166 -166
  8. pyxllib/algo/pupil.py +629 -629
  9. pyxllib/algo/shapelylib.py +67 -67
  10. pyxllib/algo/specialist.py +241 -241
  11. pyxllib/algo/stat.py +494 -494
  12. pyxllib/algo/treelib.py +149 -149
  13. pyxllib/algo/unitlib.py +66 -66
  14. pyxllib/autogui/__init__.py +5 -5
  15. pyxllib/autogui/activewin.py +246 -246
  16. pyxllib/autogui/all.py +9 -9
  17. pyxllib/autogui/autogui.py +852 -852
  18. pyxllib/autogui/uiautolib.py +362 -362
  19. pyxllib/autogui/virtualkey.py +102 -102
  20. pyxllib/autogui/wechat.py +827 -827
  21. pyxllib/autogui/wechat_msg.py +421 -421
  22. pyxllib/autogui/wxautolib.py +84 -84
  23. pyxllib/cv/__init__.py +5 -5
  24. pyxllib/cv/expert.py +267 -267
  25. pyxllib/cv/imfile.py +159 -159
  26. pyxllib/cv/imhash.py +39 -39
  27. pyxllib/cv/pupil.py +9 -9
  28. pyxllib/cv/rgbfmt.py +1525 -1525
  29. pyxllib/cv/slidercaptcha.py +137 -137
  30. pyxllib/cv/trackbartools.py +251 -251
  31. pyxllib/cv/xlcvlib.py +1040 -1040
  32. pyxllib/cv/xlpillib.py +423 -423
  33. pyxllib/data/echarts.py +240 -240
  34. pyxllib/data/jsonlib.py +89 -89
  35. pyxllib/data/oss.py +72 -72
  36. pyxllib/data/pglib.py +1127 -1127
  37. pyxllib/data/sqlite.py +568 -568
  38. pyxllib/data/sqllib.py +297 -297
  39. pyxllib/ext/JLineViewer.py +505 -505
  40. pyxllib/ext/__init__.py +6 -6
  41. pyxllib/ext/demolib.py +246 -246
  42. pyxllib/ext/drissionlib.py +277 -277
  43. pyxllib/ext/kq5034lib.py +12 -12
  44. pyxllib/ext/old.py +663 -663
  45. pyxllib/ext/qt.py +449 -449
  46. pyxllib/ext/robustprocfile.py +497 -497
  47. pyxllib/ext/seleniumlib.py +76 -76
  48. pyxllib/ext/tk.py +173 -173
  49. pyxllib/ext/unixlib.py +827 -827
  50. pyxllib/ext/utools.py +351 -351
  51. pyxllib/ext/webhook.py +124 -119
  52. pyxllib/ext/win32lib.py +40 -40
  53. pyxllib/ext/wjxlib.py +88 -88
  54. pyxllib/ext/wpsapi.py +124 -124
  55. pyxllib/ext/xlwork.py +9 -9
  56. pyxllib/ext/yuquelib.py +1105 -1105
  57. pyxllib/file/__init__.py +17 -17
  58. pyxllib/file/docxlib.py +761 -761
  59. pyxllib/file/gitlib.py +309 -309
  60. pyxllib/file/libreoffice.py +165 -165
  61. pyxllib/file/movielib.py +148 -148
  62. pyxllib/file/newbie.py +10 -10
  63. pyxllib/file/onenotelib.py +1469 -1469
  64. pyxllib/file/packlib/__init__.py +330 -330
  65. pyxllib/file/packlib/zipfile.py +2441 -2441
  66. pyxllib/file/pdflib.py +426 -426
  67. pyxllib/file/pupil.py +185 -185
  68. pyxllib/file/specialist/__init__.py +685 -685
  69. pyxllib/file/specialist/dirlib.py +799 -799
  70. pyxllib/file/specialist/download.py +193 -193
  71. pyxllib/file/specialist/filelib.py +2829 -2829
  72. pyxllib/file/xlsxlib.py +3131 -3131
  73. pyxllib/file/xlsyncfile.py +341 -341
  74. pyxllib/prog/__init__.py +5 -5
  75. pyxllib/prog/cachetools.py +64 -64
  76. pyxllib/prog/deprecatedlib.py +233 -233
  77. pyxllib/prog/filelock.py +42 -42
  78. pyxllib/prog/ipyexec.py +253 -253
  79. pyxllib/prog/multiprogs.py +940 -940
  80. pyxllib/prog/newbie.py +451 -451
  81. pyxllib/prog/pupil.py +1197 -1197
  82. pyxllib/prog/sitepackages.py +33 -33
  83. pyxllib/prog/specialist/__init__.py +391 -391
  84. pyxllib/prog/specialist/bc.py +203 -203
  85. pyxllib/prog/specialist/browser.py +497 -497
  86. pyxllib/prog/specialist/common.py +347 -347
  87. pyxllib/prog/specialist/datetime.py +198 -198
  88. pyxllib/prog/specialist/tictoc.py +240 -240
  89. pyxllib/prog/specialist/xllog.py +180 -180
  90. pyxllib/prog/xlosenv.py +108 -108
  91. pyxllib/stdlib/__init__.py +17 -17
  92. pyxllib/stdlib/tablepyxl/__init__.py +10 -10
  93. pyxllib/stdlib/tablepyxl/style.py +303 -303
  94. pyxllib/stdlib/tablepyxl/tablepyxl.py +130 -130
  95. pyxllib/text/__init__.py +8 -8
  96. pyxllib/text/ahocorasick.py +39 -39
  97. pyxllib/text/airscript.js +744 -744
  98. pyxllib/text/charclasslib.py +121 -121
  99. pyxllib/text/jiebalib.py +267 -267
  100. pyxllib/text/jinjalib.py +32 -32
  101. pyxllib/text/jsa_ai_prompt.md +271 -271
  102. pyxllib/text/jscode.py +922 -922
  103. pyxllib/text/latex/__init__.py +158 -158
  104. pyxllib/text/levenshtein.py +303 -303
  105. pyxllib/text/nestenv.py +1215 -1215
  106. pyxllib/text/newbie.py +300 -300
  107. pyxllib/text/pupil/__init__.py +8 -8
  108. pyxllib/text/pupil/common.py +1121 -1121
  109. pyxllib/text/pupil/xlalign.py +326 -326
  110. pyxllib/text/pycode.py +47 -47
  111. pyxllib/text/specialist/__init__.py +8 -8
  112. pyxllib/text/specialist/common.py +112 -112
  113. pyxllib/text/specialist/ptag.py +186 -186
  114. pyxllib/text/spellchecker.py +172 -172
  115. pyxllib/text/templates/echart_base.html +10 -10
  116. pyxllib/text/templates/highlight_code.html +16 -16
  117. pyxllib/text/templates/latex_editor.html +102 -102
  118. pyxllib/text/vbacode.py +17 -17
  119. pyxllib/text/xmllib.py +747 -747
  120. pyxllib/xl.py +42 -39
  121. pyxllib/xlcv.py +17 -17
  122. {pyxllib-0.3.197.dist-info → pyxllib-0.3.200.dist-info}/METADATA +1 -1
  123. pyxllib-0.3.200.dist-info/RECORD +126 -0
  124. {pyxllib-0.3.197.dist-info → pyxllib-0.3.200.dist-info}/licenses/LICENSE +190 -190
  125. pyxllib-0.3.197.dist-info/RECORD +0 -126
  126. {pyxllib-0.3.197.dist-info → pyxllib-0.3.200.dist-info}/WHEEL +0 -0
pyxllib/xl.py CHANGED
@@ -1,39 +1,42 @@
1
- #!/usr/bin/env python3
2
- # -*- coding: utf-8 -*-
3
- # @Author : 陈坤泽
4
- # @Email : 877362867@qq.com
5
- # @Date : 2021/06/03 22:08
6
-
7
- """ pyxllib常用功能
8
- """
9
-
10
- try:
11
- import fire
12
- except:
13
- # 除了模块找不到,在labelme场景可能还有AttributeError: 'NoneType' object has no attribute 'isatty'
14
- # 遇到这种情况,都可以忽略
15
- pass
16
-
17
- from pyxllib.file.packlib import *
18
-
19
- from pyxllib.prog.newbie import *
20
- from pyxllib.prog.pupil import *
21
- from pyxllib.prog.specialist import *
22
- # from pyxllib.prog.deprecatedlib import deprecated
23
- from deprecated import deprecated
24
-
25
- from pyxllib.algo.newbie import *
26
- from pyxllib.algo.pupil import *
27
- from pyxllib.algo.specialist import *
28
-
29
- from pyxllib.text.newbie import *
30
- from pyxllib.text.pupil import *
31
- from pyxllib.text.specialist import *
32
-
33
- from pyxllib.file.newbie import *
34
- from pyxllib.file.pupil import *
35
- from pyxllib.file.specialist import *
36
-
37
- if __name__ == '__main__':
38
- # 直接运行的话,支持开放出所有函数类接口
39
- fire.Fire()
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ # @Author : 陈坤泽
4
+ # @Email : 877362867@qq.com
5
+ # @Date : 2021/06/03 22:08
6
+
7
+ """ pyxllib常用功能
8
+ """
9
+
10
+ try:
11
+ import fire
12
+ except:
13
+ # 除了模块找不到,在labelme场景可能还有AttributeError: 'NoneType' object has no attribute 'isatty'
14
+ # 遇到这种情况,都可以忽略
15
+ pass
16
+
17
+ from pyxllib.file.packlib import *
18
+
19
+ from pyxllib.prog.newbie import *
20
+ from pyxllib.prog.pupil import *
21
+ from pyxllib.prog.specialist import *
22
+ # from pyxllib.prog.deprecatedlib import deprecated
23
+ from deprecated import deprecated
24
+
25
+ from pyxllib.algo.newbie import *
26
+ from pyxllib.algo.pupil import *
27
+ from pyxllib.algo.specialist import *
28
+
29
+ from pyxllib.text.newbie import *
30
+ from pyxllib.text.pupil import *
31
+ from pyxllib.text.specialist import *
32
+
33
+ from pyxllib.file.newbie import *
34
+ from pyxllib.file.pupil import *
35
+ from pyxllib.file.specialist import *
36
+
37
+ if __name__ == '__main__':
38
+ # 直接运行的话,支持开放出所有函数类接口
39
+ fire.Fire()
40
+
41
+
42
+ from pyxllib.ext.demolib import test_re
pyxllib/xlcv.py CHANGED
@@ -1,17 +1,17 @@
1
- #!/usr/bin/env python3
2
- # -*- coding: utf-8 -*-
3
- # @Author : 陈坤泽
4
- # @Email : 877362867@qq.com
5
- # @Date : 2021/06/03 22:23
6
-
7
- from pyxllib.xl import *
8
- from pyxllib.algo.geo import *
9
- from pyxllib.cv.pupil import *
10
- from pyxllib.cv.expert import *
11
- from pyxllib.cv.xlpillib import *
12
-
13
- # 把自定义的一些功能嵌入到PIL.Image.Image类中。
14
- # 因为pyxllib.xlcv设计初衷本就是为了便捷而牺牲工程性。
15
- # 如果这步没有给您“惊喜”而是“惊吓”,
16
- # 可以使用 from pyxllib.cv.expert import * 代替 from pyxllib.xlcv import *。
17
- # 然后显式使用 xlpil.imsize(im) 来代替 im.imsize 等用法。
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ # @Author : 陈坤泽
4
+ # @Email : 877362867@qq.com
5
+ # @Date : 2021/06/03 22:23
6
+
7
+ from pyxllib.xl import *
8
+ from pyxllib.algo.geo import *
9
+ from pyxllib.cv.pupil import *
10
+ from pyxllib.cv.expert import *
11
+ from pyxllib.cv.xlpillib import *
12
+
13
+ # 把自定义的一些功能嵌入到PIL.Image.Image类中。
14
+ # 因为pyxllib.xlcv设计初衷本就是为了便捷而牺牲工程性。
15
+ # 如果这步没有给您“惊喜”而是“惊吓”,
16
+ # 可以使用 from pyxllib.cv.expert import * 代替 from pyxllib.xlcv import *。
17
+ # 然后显式使用 xlpil.imsize(im) 来代替 im.imsize 等用法。
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyxllib
3
- Version: 0.3.197
3
+ Version: 0.3.200
4
4
  Summary: 厦门理工模式识别团队通用python代码工具库
5
5
  Project-URL: Homepage, https://github.com/XLPRUtils/pyxllib
6
6
  Author-email: code4101 <877362867@qq.com>
@@ -0,0 +1,126 @@
1
+ pyxllib/__init__.py,sha256=mfP8jizkgJNDEkr3os5S0XNaseM3pJEZTLsJsv-US_8,508
2
+ pyxllib/xl.py,sha256=yfjao8VSdQ1hZOryF2_1TutQ-jsRbh4RN4NKq1YD-Fw,1055
3
+ pyxllib/xlcv.py,sha256=sAp1UbwJ3hYWDMUfMRKxw7kKixcMwADNUesGpx7lJ6I,635
4
+ pyxllib/algo/__init__.py,sha256=y5anjyDuuWRhRNmhod-2FKxk8Dl9x9Nr0BastaooPEg,153
5
+ pyxllib/algo/disjoint.py,sha256=3DL3PJxj8PF7ZwHndug4mwQHyvnqJZcrT8tvjcdvyJQ,1396
6
+ pyxllib/algo/geo.py,sha256=FsKygdRbK2pVmC4KXXYZxZ2h1Hn_koIXuNmhI4VSkDo,17941
7
+ pyxllib/algo/intervals.py,sha256=5JvRXtWI4QX0zPhBsYnDwyPgKrmWzR2zg3htXmo5KBg,35756
8
+ pyxllib/algo/matcher.py,sha256=BGc9--VeLKi9C0KNWhe6txFPPfTEfCahZlpGrEmlBa0,15601
9
+ pyxllib/algo/newbie.py,sha256=ycWyn3j39jDrDWfCpzo8sbJSPHNnD24pDLtbdHhpDM8,4002
10
+ pyxllib/algo/pupil.py,sha256=LCz6xFQnunkx5Kxnf9ZCRnjhpfWQEH68Dv7dEp-W9b0,23286
11
+ pyxllib/algo/shapelylib.py,sha256=-WscslV2sCMUdnGuSch-wCfmj4odmfQY4O3pILzfzRA,2326
12
+ pyxllib/algo/specialist.py,sha256=epxjtxNP6ytX9ARmtpRb6wibH1tuhGL5tdXaOJkrR6c,8380
13
+ pyxllib/algo/stat.py,sha256=Mf0Jbdgrmg76sj45V7tiBBmZ6212zO-C0ePd2ODf7Ls,19131
14
+ pyxllib/algo/treelib.py,sha256=Tio3nyJlj-FtRhpdX3XwXdtIhfheP7647BubkzX8nYI,4945
15
+ pyxllib/algo/unitlib.py,sha256=u8eNBAEy7Lzb4IQpyaW5XcS6SltUS10MxQ5oaWJR014,1887
16
+ pyxllib/autogui/__init__.py,sha256=q8JAOB5DFDY6qrv2bck5xbZnh_ZZCPtoQ57naDLSFyY,127
17
+ pyxllib/autogui/activewin.py,sha256=yxl02Vr3AUwXC3LXWv7rF05ZsSPPb2RKop70AwaFPq4,10022
18
+ pyxllib/autogui/all.py,sha256=GGMRV4Hs2w7dLvN1kXz-bqynVqyntCBavgqOrey0DyM,241
19
+ pyxllib/autogui/autogui.py,sha256=ebH-U-9-7pHpTLTgcEFEkiLmv7HFv-dhfLootenXJm0,29868
20
+ pyxllib/autogui/uiautolib.py,sha256=CFS0MCabX1Wc8fH2Pr_LdGO37klBn1m4AiGI7UVcOuw,12393
21
+ pyxllib/autogui/virtualkey.py,sha256=Z8HlVXq0Y4G3CwLpT4H-V8AbzURNyRd0xwj0ecFFiQ0,3552
22
+ pyxllib/autogui/wechat.py,sha256=sGpXlgWPNbNHN4ZRGtGnMHNlvusV912IXW-ER8STAbI,29647
23
+ pyxllib/autogui/wechat_msg.py,sha256=wt41kouUBPZY-VFP4awngfQGqU-T0JvvTmYmziaE56M,12731
24
+ pyxllib/autogui/wxautolib.py,sha256=4mjuDCTj98EWicGu7zdcv4shJTLckjBW9UCHyxKd9p8,2820
25
+ pyxllib/cv/__init__.py,sha256=0JeaNlX8CJ83GXEZJ9dcqVQrKlcnKztf3DqJhuN5KiQ,127
26
+ pyxllib/cv/expert.py,sha256=WbQSLh8yK8naxJjKVtvRvbcV1ofLVEIxbG3IKmIRFbs,11111
27
+ pyxllib/cv/imfile.py,sha256=h45pj6db2g6BfBRQ-nYqx-w1JQG6O0oY64TfEDpHd3E,6598
28
+ pyxllib/cv/imhash.py,sha256=qe-Mur8Ph6QsNoOPaot8X-jqBtba5xsJwkGet0pcy4g,938
29
+ pyxllib/cv/pupil.py,sha256=6PQfZh3DZwuKh9gJN6IFeoMhWCGmnvXVrYYC3CJmMIU,330
30
+ pyxllib/cv/rgbfmt.py,sha256=F8FC7m-YvLuSYZkbYnWDc0PSN8zzoLWwLHyoIneAiqk,36745
31
+ pyxllib/cv/slidercaptcha.py,sha256=3IBqHACG-yXV7sVkYJ-Cbhyxaf0vzdzUUGx_ghGYGVE,5285
32
+ pyxllib/cv/trackbartools.py,sha256=739ynQeQmiwZQMKMjV-sT2BjY8O0KIFwEl3Yup6a4mI,9008
33
+ pyxllib/cv/xlcvlib.py,sha256=iMZ9KfjLX8-ipqwspNtJMs2KnN8SBAOVufQpmA_yfe4,39747
34
+ pyxllib/cv/xlpillib.py,sha256=KP1i0z0Ako76RGVWWzm8XrAyjWmCWCMxSpDsR1dHcJY,15031
35
+ pyxllib/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ pyxllib/data/echarts.py,sha256=4gsJP4bL1v7Ic3Oa9aTqNtUTfHEAFlOKxbiSjvh-cKg,7997
37
+ pyxllib/data/jsonlib.py,sha256=Hcjs2sa0BMsSjcr4MBSna_QubzC9r20aJAhsVeejAZE,3346
38
+ pyxllib/data/oss.py,sha256=0W-rfrzYzRIP_yGqEh3nCkL2HKIrUXdXanzzOhKgSYc,2405
39
+ pyxllib/data/pglib.py,sha256=TSiFvXZpC3zILbOiDb_9oi5AcjaxYLtqWBgUyjKQKo4,50098
40
+ pyxllib/data/sqlite.py,sha256=gLqtooeLL0xrCofNHrx027GcZ58UFuCTciKm8vPLvrQ,20137
41
+ pyxllib/data/sqllib.py,sha256=Cd7HuEtRnfTzZv__0xS5Vzu8QZFrEN4mPBl2SvcPPUg,11658
42
+ pyxllib/ext/JLineViewer.py,sha256=OQQqoCsNtf9_GU7z06exEY3oOujYGtkp9REWXtLeRU0,19442
43
+ pyxllib/ext/__init__.py,sha256=tlLaKIK8wt3WxC8BKBEfBp73CkOU_5iD3p6Xv5pCKZo,128
44
+ pyxllib/ext/demolib.py,sha256=QxIUB4mB_cA4zPxcggmeIoQ8M5EDUs1LaAyqTmKVxFY,8306
45
+ pyxllib/ext/drissionlib.py,sha256=_FbwfayUS9diIFzqqBBR-3Ep9SfMIVDveZr4BxNXjlw,10007
46
+ pyxllib/ext/kq5034lib.py,sha256=U3sr1--oeWlZyJsBP03VjqrUhnarCzwr0YuTxVsQfWE,332
47
+ pyxllib/ext/old.py,sha256=o_3TP7zxCL1bO096kfadzB0PJt-MmQqDxkXQfWw3ce8,26744
48
+ pyxllib/ext/qt.py,sha256=3gGy86482QE8gJ_vrIrubHf58-T4HNglwt7-U0RlQVU,15641
49
+ pyxllib/ext/robustprocfile.py,sha256=9f0KAi3LpFvqvv2cve3g_P5kPtn--7LFnb9l4-du1m0,17707
50
+ pyxllib/ext/seleniumlib.py,sha256=ybNkMVGNiad-PsTJpD4dpviltA6R6R6Gjkbj6jpPKKE,2695
51
+ pyxllib/ext/tk.py,sha256=sL5N4ABrzQl1W5YIZTjGs67yccVyW0fGcDT2zTOB8hU,4831
52
+ pyxllib/ext/unixlib.py,sha256=hKCZC2NVjRXzXhI_fQbAY31feURIDcd7xHKEAm-45eU,33965
53
+ pyxllib/ext/utools.py,sha256=tGely54cn5jm7a1y1sSWAMnUGkXAI3xyEf6UqbMz9Do,13755
54
+ pyxllib/ext/webhook.py,sha256=NQH5HAZO8uncI-xweG7HqJVIG_ywhtaXKNRO4UA7Bhs,3934
55
+ pyxllib/ext/win32lib.py,sha256=YrG9q4G1M53P5Df_B4w3HvuvH7jq2122BX3gQrm5LAY,1197
56
+ pyxllib/ext/wjxlib.py,sha256=Ut-jrAXkmXjkRNpfliZ0JDkQVpH2PKVbGX3jDdf4hwI,3077
57
+ pyxllib/ext/wpsapi.py,sha256=ytGYPcALwIKBKdRh5Vhq3jv4ty6Iz88bzUMvjWkvBes,4844
58
+ pyxllib/ext/xlwork.py,sha256=KZDO9GnGzjZR_Roz-5yWfK1B9Hf2IWldERcqx4JYaP0,204
59
+ pyxllib/ext/yuquelib.py,sha256=kkElhFZzuL2WdMUy4CuxoS-C21My-JcbvbgYNhYPY64,37699
60
+ pyxllib/file/__init__.py,sha256=4UdnB_LYZwYsaIZeFJh-kiesH8rrAaY9E1GT5cjCmXM,435
61
+ pyxllib/file/docxlib.py,sha256=akJF_1Pha11TK0xx3Dsw58oqjtA0zbY1MJOdlofXIeI,29015
62
+ pyxllib/file/gitlib.py,sha256=wG_Ty6rLmkW8pv64plI3npC1QHBGvWhCC7BctF7VemQ,11311
63
+ pyxllib/file/libreoffice.py,sha256=OyReuDrK5mKONncX4nPkw9j8Lqwgu_gLXs5bMxWRpug,5442
64
+ pyxllib/file/movielib.py,sha256=EWxWVXE2dc6b91BYdzwd-zHqNBUzmW6gjkBYTsYiJq0,6037
65
+ pyxllib/file/newbie.py,sha256=uwzWvW_7OG-6TvMe3E6XcW9mYn_YRskJm8c86dG6pd0,208
66
+ pyxllib/file/onenotelib.py,sha256=Q38TJSu4zHq7rqkiStWx7xR4mPiw1XOd6ptsBPOAHIg,53558
67
+ pyxllib/file/pdflib.py,sha256=HsRCOPyTGOTe_5T4X2IZOXCJMorfwAD9Kss8QxJfT5E,16584
68
+ pyxllib/file/pupil.py,sha256=KRCbtpCoaHsXp1cRcLF6l20CqQD8rP6OmjbkfV62BOk,5814
69
+ pyxllib/file/xlsxlib.py,sha256=Cj6uTNwhKz6FhlJi4fJmx5Op8JSkWtw5479v6GI-l0M,128358
70
+ pyxllib/file/xlsyncfile.py,sha256=Y1TDzfGR8fl4efheo5AaVU2s3pxXRenveOSSr5hVcAM,14010
71
+ pyxllib/file/packlib/__init__.py,sha256=97tWehPWOj-zcg6iOhYhZI2VrkngVcclo7_VI8mQnG4,13325
72
+ pyxllib/file/packlib/zipfile.py,sha256=ekLy9KAfYKD9NvKziEZ0MVM5X7Cw9RUgNzKypjsq5zU,87724
73
+ pyxllib/file/specialist/__init__.py,sha256=tvqdyuxJlalsXLnUiei0LSKLjcoVwVCVvhJr0oG9w9I,27575
74
+ pyxllib/file/specialist/dirlib.py,sha256=zrjCWKtTbkf84Gu40LQtP0VsDFuGRmGxjhj0omMoiew,31607
75
+ pyxllib/file/specialist/download.py,sha256=b-Ysn48WPhmrV0W5aHZylbWXAdjgrcsBLDK513Po-7g,7205
76
+ pyxllib/file/specialist/filelib.py,sha256=QVyV0vmT5o5eUoHTtv2fDil6Iaz0zldy2iRHRzZRie4,107005
77
+ pyxllib/prog/__init__.py,sha256=lXLC97i2KSLya5p4LHDae7RXQJCOR6N6zJiDjRSxKOE,127
78
+ pyxllib/prog/cachetools.py,sha256=cJziPfzmKrsz-EK_fAo84mIRNzTthrHZfRm6yfznji8,2578
79
+ pyxllib/prog/deprecatedlib.py,sha256=HDyG7-CH6TRH95UTlIqAgZaQRw_cBEBO9oS7CAAQvlI,8266
80
+ pyxllib/prog/filelock.py,sha256=vYqItmMBah_EiAjEVRMt4oM4EE_gUrY1rwqf2io_3AY,1394
81
+ pyxllib/prog/ipyexec.py,sha256=8Nvgr2aNNxRQZ3gqF-iTuu4Yk5M7lEuqbXwPMAhxzkc,8976
82
+ pyxllib/prog/multiprogs.py,sha256=PF4gW7-h__0heeIBGnQaYSs8GspAH9KL8yOe7Ptjb5I,36986
83
+ pyxllib/prog/newbie.py,sha256=T1dDhcroBfMk5wvaotmrrJrsUDAErmcC6z3Za8wNevs,14819
84
+ pyxllib/prog/pupil.py,sha256=6KnG2DLkySy8GYfAie76FA0-ByL0OQFOlP8xMIeM1T8,44583
85
+ pyxllib/prog/sitepackages.py,sha256=XsUKOipjrBTw9Zi_J3pbbbJqTjpm6lB1_uHRZb9FxYI,963
86
+ pyxllib/prog/xlosenv.py,sha256=WmtI1VUaOfvAHfPM2Zy3Ijkk5-DMT4gmO9lP5LnFxYY,3691
87
+ pyxllib/prog/specialist/__init__.py,sha256=FzCSbX0Qor_BixLo4U41PtthNv_Sh2TMrqtj5hd6Tc8,14651
88
+ pyxllib/prog/specialist/bc.py,sha256=-qRZ7fb8rv-irWCixLOk2J3aYwjrLk6NQMj0cWset4Y,9647
89
+ pyxllib/prog/specialist/browser.py,sha256=JpASJC_QN7o4tVkmEyTY7Ygqz-dhl21ordTnCPu9F54,19699
90
+ pyxllib/prog/specialist/common.py,sha256=aRdyszicVjLAN8a5LOG_XHXnnKH6VxtI710K2pAxP74,12962
91
+ pyxllib/prog/specialist/datetime.py,sha256=EdKJbNVr4YWrZnWcEgUTy7q73KVuF9IS7uJeyP6DORc,6405
92
+ pyxllib/prog/specialist/tictoc.py,sha256=6aBoATDePc5WtwFJplTTFEAQg7BFGn328CjluytFgPY,8192
93
+ pyxllib/prog/specialist/xllog.py,sha256=XvgsaJSQnRkbGszhzooUENEdQPZEugy4BlLIGce2pFg,8071
94
+ pyxllib/stdlib/__init__.py,sha256=jCgkVOhwUWKgFcnjjk1kUi6zURa6WkJIE3uyDpo4gmg,564
95
+ pyxllib/stdlib/tablepyxl/__init__.py,sha256=gGBdR8ZXd6nCnqB0ODHEeFG04tdro6ZBN0bueh2xp3A,183
96
+ pyxllib/stdlib/tablepyxl/style.py,sha256=vcuJyGanL9jcbQhwVgDnvoAzM9iNLJnEHlORayWfqbk,10621
97
+ pyxllib/stdlib/tablepyxl/tablepyxl.py,sha256=rsFaqS97ieuRwEvJaWFIgxefSabke6y_3p1tZWStvNQ,4401
98
+ pyxllib/text/__init__.py,sha256=wt5ZD19bDuPWzm8MFu0DSNIQF3mYchIGevsoPUwkTn8,162
99
+ pyxllib/text/ahocorasick.py,sha256=Z6T4zHsPpNYOhXigzH3Ssaa9L3r6FY0NCNE8jBz7A18,1220
100
+ pyxllib/text/airscript.js,sha256=sy8d0O2QA1WGwTKxGaY8JcIDZoIt370NR6CIHdjbv7Y,29615
101
+ pyxllib/text/charclasslib.py,sha256=wUea2p9FXUwcwRcPF7bRghIwPhpxNhkP31arEwsW9w4,37530
102
+ pyxllib/text/jiebalib.py,sha256=ZRTYryO77O0cU-ahmjjjG9I44gio_6JGAXQ2wKw9xlM,8686
103
+ pyxllib/text/jinjalib.py,sha256=69ZkJL_GQh63T9bGuRj-rn5eFHTUK8XIDRj9dw0pm6s,949
104
+ pyxllib/text/jsa_ai_prompt.md,sha256=stkJnzDKgafAlu1M2QGX1SPHByj94UWXvI_fkccHC8U,12517
105
+ pyxllib/text/jscode.py,sha256=9o5isGVcDJ6jpVh0xn3AfA2xmGzK2i9FO1A5HJxtVXw,38685
106
+ pyxllib/text/levenshtein.py,sha256=_LBlQ7dv5BIQwJz8K7kh2KAgQO_OVt9yQgRZ4iAlzRU,11956
107
+ pyxllib/text/nestenv.py,sha256=c-Ch7UBvwV74Yl0P_miFcpeurv3PP1I85nTbp9gmaYc,50476
108
+ pyxllib/text/newbie.py,sha256=68FT-iCpVHSy-1T8_jqc9PTJVBF-DnDHVH84A5hF_Jo,7368
109
+ pyxllib/text/pycode.py,sha256=WmO69iGyRsMDQs_iNI-m_UzGWwkIy9B4zKqBCEuOsSo,1538
110
+ pyxllib/text/spellchecker.py,sha256=DlJaonkUFdrgNclsxQsOaCgFFp0FOwL2lCkx-mSw9p0,7534
111
+ pyxllib/text/vbacode.py,sha256=GexOFhHhZ3vsSHxs7HbqBJR1o5JkQzzy1UsvFH3plzE,497
112
+ pyxllib/text/xmllib.py,sha256=9suG29joX0tTyhY-iCmDrfZF0QFa_4tEw7jbf5pA7OY,27865
113
+ pyxllib/text/latex/__init__.py,sha256=nrz0l2WMj_CwbIkD-fRfugPgAKSjJdi6aXPeNpuNKAU,6258
114
+ pyxllib/text/pupil/__init__.py,sha256=xrA2KHe4c5PnKO7wIitW9-GQolXgETTV9BYnO-Lq75k,209
115
+ pyxllib/text/pupil/common.py,sha256=yPvFq3bsuzSkm-zSqiuV2WVmm_uSOyHm-pTIjkDsOng,36788
116
+ pyxllib/text/pupil/xlalign.py,sha256=LzvEiOb662DgI9t4gOot29-iDcH7Lj8PMVHS7PaYm_Y,10800
117
+ pyxllib/text/specialist/__init__.py,sha256=lfKgdnh_ij7docrrLMaMmobuCFjaqnfhW4QJaNWcBik,216
118
+ pyxllib/text/specialist/common.py,sha256=rNYg1NczyROOO63XCaGrswmRsIfjHpeyGiFk83szzt8,3823
119
+ pyxllib/text/specialist/ptag.py,sha256=_As-f5-opbhObhTMePHzmSP46nMqcyC2Uknr8OoRgcY,6504
120
+ pyxllib/text/templates/echart_base.html,sha256=VJeabfLnsMjE445xyww5dvup8MkMjZTZ8rt2iN9v89M,241
121
+ pyxllib/text/templates/highlight_code.html,sha256=4IcPVx_3mfAQzX4Pp_FQW5LVyRbspMZ5q_bxizVNbsk,518
122
+ pyxllib/text/templates/latex_editor.html,sha256=oqadq-7zH8J8r_2Y2QidUYmmhQkpZiK0A4-zwG9wjPk,3561
123
+ pyxllib-0.3.200.dist-info/METADATA,sha256=GBGIsAZIV7UR2W6X24vpihaSMWIg98J1Ak2wpv6hv5w,1193
124
+ pyxllib-0.3.200.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
125
+ pyxllib-0.3.200.dist-info/licenses/LICENSE,sha256=jtz5xkHYXTw44vA3-TP5B6r4Z5N8RDoKvMAVs-hCCn4,10253
126
+ pyxllib-0.3.200.dist-info/RECORD,,
@@ -1,191 +1,191 @@
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, and
10
- distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by the copyright
13
- owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all other entities
16
- that control, are controlled by, or are under common control with that entity.
17
- For the purposes of this definition, "control" means (i) the power, direct or
18
- indirect, to cause the direction or management of such entity, whether by
19
- contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
- outstanding shares, or (iii) beneficial ownership of such entity.
21
-
22
- "You" (or "Your") shall mean an individual or Legal Entity exercising
23
- permissions granted by this License.
24
-
25
- "Source" form shall mean the preferred form for making modifications, including
26
- but not limited to software source code, documentation source, and configuration
27
- files.
28
-
29
- "Object" form shall mean any form resulting from mechanical transformation or
30
- translation of a Source form, including but not limited to compiled object code,
31
- generated documentation, and conversions to other media types.
32
-
33
- "Work" shall mean the work of authorship, whether in Source or Object form, made
34
- available under the License, as indicated by a copyright notice that is included
35
- in or attached to the work (an example is provided in the Appendix below).
36
-
37
- "Derivative Works" shall mean any work, whether in Source or Object form, that
38
- is based on (or derived from) the Work and for which the editorial revisions,
39
- annotations, elaborations, or other modifications represent, as a whole, an
40
- original work of authorship. For the purposes of this License, Derivative Works
41
- shall not include works that remain separable from, or merely link (or bind by
42
- name) to the interfaces of, the Work and Derivative Works thereof.
43
-
44
- "Contribution" shall mean any work of authorship, including the original version
45
- of the Work and any modifications or additions to that Work or Derivative Works
46
- thereof, that is intentionally submitted to Licensor for inclusion in the Work
47
- by the copyright owner or by an individual or Legal Entity authorized to submit
48
- on behalf of the copyright owner. For the purposes of this definition,
49
- "submitted" means any form of electronic, verbal, or written communication sent
50
- to the Licensor or its representatives, including but not limited to
51
- communication on electronic mailing lists, source code control systems, and
52
- issue tracking systems that are managed by, or on behalf of, the Licensor for
53
- the purpose of discussing and improving the Work, but excluding communication
54
- that is conspicuously marked or otherwise designated in writing by the copyright
55
- owner as "Not a Contribution."
56
-
57
- "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58
- of whom a Contribution has been received by Licensor and subsequently
59
- incorporated within the Work.
60
-
61
- 2. Grant of Copyright License.
62
-
63
- Subject to the terms and conditions of this License, each Contributor hereby
64
- grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
65
- irrevocable copyright license to reproduce, prepare Derivative Works of,
66
- publicly display, publicly perform, sublicense, and distribute the Work and such
67
- Derivative Works in Source or Object form.
68
-
69
- 3. Grant of Patent License.
70
-
71
- Subject to the terms and conditions of this License, each Contributor hereby
72
- grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
73
- irrevocable (except as stated in this section) patent license to make, have
74
- made, use, offer to sell, sell, import, and otherwise transfer the Work, where
75
- such license applies only to those patent claims licensable by such Contributor
76
- that are necessarily infringed by their Contribution(s) alone or by combination
77
- of their Contribution(s) with the Work to which such Contribution(s) was
78
- submitted. If You institute patent litigation against any entity (including a
79
- cross-claim or counterclaim in a lawsuit) alleging that the Work or a
80
- Contribution incorporated within the Work constitutes direct or contributory
81
- patent infringement, then any patent licenses granted to You under this License
82
- for that Work shall terminate as of the date such litigation is filed.
83
-
84
- 4. Redistribution.
85
-
86
- You may reproduce and distribute copies of the Work or Derivative Works thereof
87
- in any medium, with or without modifications, and in Source or Object form,
88
- provided that You meet the following conditions:
89
-
90
- You must give any other recipients of the Work or Derivative Works a copy of
91
- this License; and
92
- You must cause any modified files to carry prominent notices stating that You
93
- changed the files; and
94
- You must retain, in the Source form of any Derivative Works that You distribute,
95
- all copyright, patent, trademark, and attribution notices from the Source form
96
- of the Work, excluding those notices that do not pertain to any part of the
97
- Derivative Works; and
98
- If the Work includes a "NOTICE" text file as part of its distribution, then any
99
- Derivative Works that You distribute must include a readable copy of the
100
- attribution notices contained within such NOTICE file, excluding those notices
101
- that do not pertain to any part of the Derivative Works, in at least one of the
102
- following places: within a NOTICE text file distributed as part of the
103
- Derivative Works; within the Source form or documentation, if provided along
104
- with the Derivative Works; or, within a display generated by the Derivative
105
- Works, if and wherever such third-party notices normally appear. The contents of
106
- the NOTICE file are for informational purposes only and do not modify the
107
- License. You may add Your own attribution notices within Derivative Works that
108
- You distribute, alongside or as an addendum to the NOTICE text from the Work,
109
- provided that such additional attribution notices cannot be construed as
110
- modifying the License.
111
- You may add Your own copyright statement to Your modifications and may provide
112
- additional or different license terms and conditions for use, reproduction, or
113
- distribution of Your modifications, or for any such Derivative Works as a whole,
114
- provided Your use, reproduction, and distribution of the Work otherwise complies
115
- with the conditions stated in this License.
116
-
117
- 5. Submission of Contributions.
118
-
119
- Unless You explicitly state otherwise, any Contribution intentionally submitted
120
- for inclusion in the Work by You to the Licensor shall be under the terms and
121
- conditions of this License, without any additional terms or conditions.
122
- Notwithstanding the above, nothing herein shall supersede or modify the terms of
123
- any separate license agreement you may have executed with Licensor regarding
124
- such Contributions.
125
-
126
- 6. Trademarks.
127
-
128
- This License does not grant permission to use the trade names, trademarks,
129
- service marks, or product names of the Licensor, except as required for
130
- reasonable and customary use in describing the origin of the Work and
131
- reproducing the content of the NOTICE file.
132
-
133
- 7. Disclaimer of Warranty.
134
-
135
- Unless required by applicable law or agreed to in writing, Licensor provides the
136
- Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
137
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
138
- including, without limitation, any warranties or conditions of TITLE,
139
- NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
140
- solely responsible for determining the appropriateness of using or
141
- redistributing the Work and assume any risks associated with Your exercise of
142
- permissions under this License.
143
-
144
- 8. Limitation of Liability.
145
-
146
- In no event and under no legal theory, whether in tort (including negligence),
147
- contract, or otherwise, unless required by applicable law (such as deliberate
148
- and grossly negligent acts) or agreed to in writing, shall any Contributor be
149
- liable to You for damages, including any direct, indirect, special, incidental,
150
- or consequential damages of any character arising as a result of this License or
151
- out of the use or inability to use the Work (including but not limited to
152
- damages for loss of goodwill, work stoppage, computer failure or malfunction, or
153
- any and all other commercial damages or losses), even if such Contributor has
154
- been advised of the possibility of such damages.
155
-
156
- 9. Accepting Warranty or Additional Liability.
157
-
158
- While redistributing the Work or Derivative Works thereof, You may choose to
159
- offer, and charge a fee for, acceptance of support, warranty, indemnity, or
160
- other liability obligations and/or rights consistent with this License. However,
161
- in accepting such obligations, You may act only on Your own behalf and on Your
162
- sole responsibility, not on behalf of any other Contributor, and only if You
163
- agree to indemnify, defend, and hold each Contributor harmless for any liability
164
- incurred by, or claims asserted against, such Contributor by reason of your
165
- accepting any such warranty or additional liability.
166
-
167
- END OF TERMS AND CONDITIONS
168
-
169
- APPENDIX: How to apply the Apache License to your work
170
-
171
- To apply the Apache License to your work, attach the following boilerplate
172
- notice, with the fields enclosed by brackets "{}" replaced with your own
173
- identifying information. (Don't include the brackets!) The text should be
174
- enclosed in the appropriate comment syntax for the file format. We also
175
- recommend that a file or class name and description of purpose be included on
176
- the same "printed page" as the copyright notice for easier identification within
177
- third-party archives.
178
-
179
- Copyright 2018 code4101
180
-
181
- Licensed under the Apache License, Version 2.0 (the "License");
182
- you may not use this file except in compliance with the License.
183
- You may obtain a copy of the License at
184
-
185
- http://www.apache.org/licenses/LICENSE-2.0
186
-
187
- Unless required by applicable law or agreed to in writing, software
188
- distributed under the License is distributed on an "AS IS" BASIS,
189
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
- See the License for the specific language governing permissions and
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, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright
13
+ owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities
16
+ that control, are controlled by, or are under common control with that entity.
17
+ For the purposes of this definition, "control" means (i) the power, direct or
18
+ indirect, to cause the direction or management of such entity, whether by
19
+ contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
23
+ permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications, including
26
+ but not limited to software source code, documentation source, and configuration
27
+ files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical transformation or
30
+ translation of a Source form, including but not limited to compiled object code,
31
+ generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form, made
34
+ available under the License, as indicated by a copyright notice that is included
35
+ in or attached to the work (an example is provided in the Appendix below).
36
+
37
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
38
+ is based on (or derived from) the Work and for which the editorial revisions,
39
+ annotations, elaborations, or other modifications represent, as a whole, an
40
+ original work of authorship. For the purposes of this License, Derivative Works
41
+ shall not include works that remain separable from, or merely link (or bind by
42
+ name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original version
45
+ of the Work and any modifications or additions to that Work or Derivative Works
46
+ thereof, that is intentionally submitted to Licensor for inclusion in the Work
47
+ by the copyright owner or by an individual or Legal Entity authorized to submit
48
+ on behalf of the copyright owner. For the purposes of this definition,
49
+ "submitted" means any form of electronic, verbal, or written communication sent
50
+ to the Licensor or its representatives, including but not limited to
51
+ communication on electronic mailing lists, source code control systems, and
52
+ issue tracking systems that are managed by, or on behalf of, the Licensor for
53
+ the purpose of discussing and improving the Work, but excluding communication
54
+ that is conspicuously marked or otherwise designated in writing by the copyright
55
+ owner as "Not a Contribution."
56
+
57
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58
+ of whom a Contribution has been received by Licensor and subsequently
59
+ incorporated within the Work.
60
+
61
+ 2. Grant of Copyright License.
62
+
63
+ Subject to the terms and conditions of this License, each Contributor hereby
64
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
65
+ irrevocable copyright license to reproduce, prepare Derivative Works of,
66
+ publicly display, publicly perform, sublicense, and distribute the Work and such
67
+ Derivative Works in Source or Object form.
68
+
69
+ 3. Grant of Patent License.
70
+
71
+ Subject to the terms and conditions of this License, each Contributor hereby
72
+ grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
73
+ irrevocable (except as stated in this section) patent license to make, have
74
+ made, use, offer to sell, sell, import, and otherwise transfer the Work, where
75
+ such license applies only to those patent claims licensable by such Contributor
76
+ that are necessarily infringed by their Contribution(s) alone or by combination
77
+ of their Contribution(s) with the Work to which such Contribution(s) was
78
+ submitted. If You institute patent litigation against any entity (including a
79
+ cross-claim or counterclaim in a lawsuit) alleging that the Work or a
80
+ Contribution incorporated within the Work constitutes direct or contributory
81
+ patent infringement, then any patent licenses granted to You under this License
82
+ for that Work shall terminate as of the date such litigation is filed.
83
+
84
+ 4. Redistribution.
85
+
86
+ You may reproduce and distribute copies of the Work or Derivative Works thereof
87
+ in any medium, with or without modifications, and in Source or Object form,
88
+ provided that You meet the following conditions:
89
+
90
+ You must give any other recipients of the Work or Derivative Works a copy of
91
+ this License; and
92
+ You must cause any modified files to carry prominent notices stating that You
93
+ changed the files; and
94
+ You must retain, in the Source form of any Derivative Works that You distribute,
95
+ all copyright, patent, trademark, and attribution notices from the Source form
96
+ of the Work, excluding those notices that do not pertain to any part of the
97
+ Derivative Works; and
98
+ If the Work includes a "NOTICE" text file as part of its distribution, then any
99
+ Derivative Works that You distribute must include a readable copy of the
100
+ attribution notices contained within such NOTICE file, excluding those notices
101
+ that do not pertain to any part of the Derivative Works, in at least one of the
102
+ following places: within a NOTICE text file distributed as part of the
103
+ Derivative Works; within the Source form or documentation, if provided along
104
+ with the Derivative Works; or, within a display generated by the Derivative
105
+ Works, if and wherever such third-party notices normally appear. The contents of
106
+ the NOTICE file are for informational purposes only and do not modify the
107
+ License. You may add Your own attribution notices within Derivative Works that
108
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
109
+ provided that such additional attribution notices cannot be construed as
110
+ modifying the License.
111
+ You may add Your own copyright statement to Your modifications and may provide
112
+ additional or different license terms and conditions for use, reproduction, or
113
+ distribution of Your modifications, or for any such Derivative Works as a whole,
114
+ provided Your use, reproduction, and distribution of the Work otherwise complies
115
+ with the conditions stated in this License.
116
+
117
+ 5. Submission of Contributions.
118
+
119
+ Unless You explicitly state otherwise, any Contribution intentionally submitted
120
+ for inclusion in the Work by You to the Licensor shall be under the terms and
121
+ conditions of this License, without any additional terms or conditions.
122
+ Notwithstanding the above, nothing herein shall supersede or modify the terms of
123
+ any separate license agreement you may have executed with Licensor regarding
124
+ such Contributions.
125
+
126
+ 6. Trademarks.
127
+
128
+ This License does not grant permission to use the trade names, trademarks,
129
+ service marks, or product names of the Licensor, except as required for
130
+ reasonable and customary use in describing the origin of the Work and
131
+ reproducing the content of the NOTICE file.
132
+
133
+ 7. Disclaimer of Warranty.
134
+
135
+ Unless required by applicable law or agreed to in writing, Licensor provides the
136
+ Work (and each Contributor provides its Contributions) on an "AS IS" BASIS,
137
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
138
+ including, without limitation, any warranties or conditions of TITLE,
139
+ NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
140
+ solely responsible for determining the appropriateness of using or
141
+ redistributing the Work and assume any risks associated with Your exercise of
142
+ permissions under this License.
143
+
144
+ 8. Limitation of Liability.
145
+
146
+ In no event and under no legal theory, whether in tort (including negligence),
147
+ contract, or otherwise, unless required by applicable law (such as deliberate
148
+ and grossly negligent acts) or agreed to in writing, shall any Contributor be
149
+ liable to You for damages, including any direct, indirect, special, incidental,
150
+ or consequential damages of any character arising as a result of this License or
151
+ out of the use or inability to use the Work (including but not limited to
152
+ damages for loss of goodwill, work stoppage, computer failure or malfunction, or
153
+ any and all other commercial damages or losses), even if such Contributor has
154
+ been advised of the possibility of such damages.
155
+
156
+ 9. Accepting Warranty or Additional Liability.
157
+
158
+ While redistributing the Work or Derivative Works thereof, You may choose to
159
+ offer, and charge a fee for, acceptance of support, warranty, indemnity, or
160
+ other liability obligations and/or rights consistent with this License. However,
161
+ in accepting such obligations, You may act only on Your own behalf and on Your
162
+ sole responsibility, not on behalf of any other Contributor, and only if You
163
+ agree to indemnify, defend, and hold each Contributor harmless for any liability
164
+ incurred by, or claims asserted against, such Contributor by reason of your
165
+ accepting any such warranty or additional liability.
166
+
167
+ END OF TERMS AND CONDITIONS
168
+
169
+ APPENDIX: How to apply the Apache License to your work
170
+
171
+ To apply the Apache License to your work, attach the following boilerplate
172
+ notice, with the fields enclosed by brackets "{}" replaced with your own
173
+ identifying information. (Don't include the brackets!) The text should be
174
+ enclosed in the appropriate comment syntax for the file format. We also
175
+ recommend that a file or class name and description of purpose be included on
176
+ the same "printed page" as the copyright notice for easier identification within
177
+ third-party archives.
178
+
179
+ Copyright 2018 code4101
180
+
181
+ Licensed under the Apache License, Version 2.0 (the "License");
182
+ you may not use this file except in compliance with the License.
183
+ You may obtain a copy of the License at
184
+
185
+ http://www.apache.org/licenses/LICENSE-2.0
186
+
187
+ Unless required by applicable law or agreed to in writing, software
188
+ distributed under the License is distributed on an "AS IS" BASIS,
189
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
+ See the License for the specific language governing permissions and
191
191
  limitations under the License.