encommon 0.21.0__py3-none-any.whl → 0.22.0__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 (54) hide show
  1. encommon/times/common.py +3 -0
  2. encommon/times/unitime.py +17 -8
  3. encommon/version.txt +1 -1
  4. encommon/webkit/__init__.py +15 -0
  5. encommon/webkit/content.py +94 -0
  6. encommon/webkit/images/enasis.svg +174 -0
  7. encommon/webkit/images/failure.svg +14 -0
  8. encommon/webkit/images/information.svg +17 -0
  9. encommon/webkit/images/success.svg +17 -0
  10. encommon/webkit/images/warning.svg +15 -0
  11. encommon/webkit/index.html +218 -0
  12. encommon/webkit/scripts/color.js +45 -0
  13. encommon/webkit/scripts/datagrid.js +105 -0
  14. encommon/webkit/scripts/datetime.js +160 -0
  15. encommon/webkit/scripts/default.js +327 -0
  16. encommon/webkit/scripts/duration.js +150 -0
  17. encommon/webkit/scripts/helpers.js +247 -0
  18. encommon/webkit/scripts/image.js +39 -0
  19. encommon/webkit/scripts/message.js +31 -0
  20. encommon/webkit/scripts/moderate.js +71 -0
  21. encommon/webkit/scripts/numeric.js +189 -0
  22. encommon/webkit/scripts/statate.js +35 -0
  23. encommon/webkit/scripts/tagues.js +34 -0
  24. encommon/webkit/styles/color.css +57 -0
  25. encommon/webkit/styles/datagrid.css +58 -0
  26. encommon/webkit/styles/datetime.css +50 -0
  27. encommon/webkit/styles/default.css +204 -0
  28. encommon/webkit/styles/duration.css +44 -0
  29. encommon/webkit/styles/image.css +60 -0
  30. encommon/webkit/styles/message.css +88 -0
  31. encommon/webkit/styles/moderate.css +64 -0
  32. encommon/webkit/styles/numeric.css +55 -0
  33. encommon/webkit/styles/statate.css +50 -0
  34. encommon/webkit/styles/tagues.css +45 -0
  35. encommon/webkit/test/__init__.py +39 -0
  36. encommon/webkit/test/conftest.py +52 -0
  37. encommon/webkit/test/test_color.py +64 -0
  38. encommon/webkit/test/test_content.py +98 -0
  39. encommon/webkit/test/test_datagrid.py +90 -0
  40. encommon/webkit/test/test_datetime.py +75 -0
  41. encommon/webkit/test/test_default.py +314 -0
  42. encommon/webkit/test/test_duration.py +74 -0
  43. encommon/webkit/test/test_helpers.py +382 -0
  44. encommon/webkit/test/test_image.py +62 -0
  45. encommon/webkit/test/test_message.py +64 -0
  46. encommon/webkit/test/test_moderate.py +75 -0
  47. encommon/webkit/test/test_numeric.py +164 -0
  48. encommon/webkit/test/test_statate.py +78 -0
  49. encommon/webkit/test/test_tagues.py +66 -0
  50. {encommon-0.21.0.dist-info → encommon-0.22.0.dist-info}/METADATA +1 -1
  51. {encommon-0.21.0.dist-info → encommon-0.22.0.dist-info}/RECORD +54 -8
  52. {encommon-0.21.0.dist-info → encommon-0.22.0.dist-info}/LICENSE +0 -0
  53. {encommon-0.21.0.dist-info → encommon-0.22.0.dist-info}/WHEEL +0 -0
  54. {encommon-0.21.0.dist-info → encommon-0.22.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,164 @@
1
+ """
2
+ Functions and routines associated with Enasis Network Common Library.
3
+
4
+ This file is part of Enasis Network software eco-system. Distribution
5
+ is permitted, for more information consult the project license file.
6
+ """
7
+
8
+
9
+
10
+ from typing import TYPE_CHECKING
11
+
12
+ from pytest import fixture
13
+
14
+ from selenium.webdriver.remote.webdriver import WebDriver
15
+
16
+ from . import _executejs
17
+
18
+ if TYPE_CHECKING:
19
+ from ..content import Content
20
+
21
+
22
+
23
+ @fixture
24
+ def prepare(
25
+ content: 'Content',
26
+ driver: WebDriver,
27
+ ) -> tuple['Content', WebDriver]:
28
+ """
29
+ Construct the instance for use in the downstream tests.
30
+
31
+ :returns: Newly constructed instance of related class.
32
+ """
33
+
34
+ driver.get(
35
+ f"""
36
+ data:text/html;
37
+ charset=utf-8,
38
+ <html>
39
+ <head>
40
+ <script>
41
+ {content.scripts('default')}
42
+ {content.scripts('helpers')}
43
+ {content.scripts('numeric')}
44
+ </script>
45
+ </head>
46
+ <body>
47
+ <div>Hello</div>
48
+ <span>World</span>
49
+ </body>
50
+ </html>
51
+ """)
52
+
53
+ return (content, driver)
54
+
55
+
56
+
57
+ def test_numeric(
58
+ prepare: tuple['Content', WebDriver],
59
+ ) -> None:
60
+ """
61
+ Perform various tests associated with relevant routines.
62
+
63
+ :param prepare: Driver and content loaded with scripts.
64
+ """
65
+
66
+ content, driver = prepare
67
+
68
+
69
+ outcome = _executejs(
70
+ driver,
71
+ 'let element ='
72
+ ' numeric(...arguments);'
73
+ 'return'
74
+ ' element[0].outerHTML;',
75
+ 1.1, 'gb',
76
+ wrap=False)
77
+
78
+ assert outcome == (
79
+ '<div class="encommon_numeric">'
80
+ '<span class="_value">1</span>'
81
+ '<span class="_delim">.</span>'
82
+ '<span class="_decimal">1</span>'
83
+ '<span class="_unit">gb</span>'
84
+ '</div>')
85
+
86
+
87
+ outcome = _executejs(
88
+ driver,
89
+ 'let element ='
90
+ ' numeric(...arguments);'
91
+ 'return'
92
+ ' element[0].outerHTML;',
93
+ 1.0, 'gb',
94
+ wrap=False)
95
+
96
+ assert outcome == (
97
+ '<div class="encommon_numeric">'
98
+ '<span class="_value">1</span>'
99
+ '<span class="_unit">gb</span>'
100
+ '</div>')
101
+
102
+
103
+
104
+ def test_numeric_count(
105
+ prepare: tuple['Content', WebDriver],
106
+ ) -> None:
107
+ """
108
+ Perform various tests associated with relevant routines.
109
+
110
+ :param prepare: Driver and content loaded with scripts.
111
+ """
112
+
113
+ content, driver = prepare
114
+
115
+
116
+ outcome = _executejs(
117
+ driver,
118
+ 'let element ='
119
+ ' numeric_count(...arguments);'
120
+ 'return'
121
+ ' element[0].outerHTML;',
122
+ 1e10 + 1e8,
123
+ wrap=False)
124
+
125
+
126
+ assert outcome == (
127
+ '<div class="encommon_numeric">'
128
+ '<span class="_value">10</span>'
129
+ '<span class="_delim">.</span>'
130
+ '<span class="_decimal">1</span>'
131
+ '<span class="_unit">billion</span>'
132
+ '</div>')
133
+
134
+
135
+
136
+ def test_numeric_bytes(
137
+ prepare: tuple['Content', WebDriver],
138
+ ) -> None:
139
+ """
140
+ Perform various tests associated with relevant routines.
141
+
142
+ :param prepare: Driver and content loaded with scripts.
143
+ """
144
+
145
+ content, driver = prepare
146
+
147
+
148
+ outcome = _executejs(
149
+ driver,
150
+ 'let element ='
151
+ ' numeric_bytes(...arguments);'
152
+ 'return'
153
+ ' element[0].outerHTML;',
154
+ 1e10 + 1e8,
155
+ wrap=False)
156
+
157
+
158
+ assert outcome == (
159
+ '<div class="encommon_numeric">'
160
+ '<span class="_value">10</span>'
161
+ '<span class="_delim">.</span>'
162
+ '<span class="_decimal">1</span>'
163
+ '<span class="_unit">GB</span>'
164
+ '</div>')
@@ -0,0 +1,78 @@
1
+ """
2
+ Functions and routines associated with Enasis Network Common Library.
3
+
4
+ This file is part of Enasis Network software eco-system. Distribution
5
+ is permitted, for more information consult the project license file.
6
+ """
7
+
8
+
9
+
10
+ from typing import TYPE_CHECKING
11
+
12
+ from selenium.webdriver.remote.webdriver import WebDriver
13
+
14
+ from . import _executejs
15
+
16
+ if TYPE_CHECKING:
17
+ from ..content import Content
18
+
19
+
20
+
21
+ def test_statate(
22
+ content: 'Content',
23
+ driver: WebDriver,
24
+ ) -> None:
25
+ """
26
+ Perform various tests associated with relevant routines.
27
+
28
+ :param content: Primary class instance for the content.
29
+ :param driver: Selenium driver provided by the library.
30
+ """
31
+
32
+
33
+ driver.get(
34
+ f"""
35
+ data:text/html;
36
+ charset=utf-8,
37
+ <html>
38
+ <head>
39
+ <script>
40
+ {content.scripts('default')}
41
+ {content.scripts('helpers')}
42
+ {content.scripts('image')}
43
+ {content.scripts('moderate')}
44
+ {content.scripts('statate')}
45
+ </script>
46
+ </head>
47
+ <body></body>
48
+ </html>
49
+ """)
50
+
51
+
52
+ outcome = _executejs(
53
+ driver,
54
+ 'let element ='
55
+ ' statate(...arguments);'
56
+ 'return'
57
+ ' element[0].outerHTML;',
58
+ 'failure',
59
+ 'Failure',
60
+ 'There was an issue',
61
+ wrap=False)
62
+
63
+
64
+ assert outcome == (
65
+ '<div class="encommon_moderate'
66
+ ' encommon_statate"'
67
+ ' data-status="failure">'
68
+ '<div class="_icon">'
69
+ '<div class="encommon_svgicon"'
70
+ ' data-image="failure"></div>'
71
+ '</div>'
72
+ '<div class="_value">'
73
+ '<div class="_label">'
74
+ 'Failure</div>'
75
+ '<div class="_small">'
76
+ 'There was an issue</div>'
77
+ '</div>'
78
+ '</div>')
@@ -0,0 +1,66 @@
1
+ """
2
+ Functions and routines associated with Enasis Network Common Library.
3
+
4
+ This file is part of Enasis Network software eco-system. Distribution
5
+ is permitted, for more information consult the project license file.
6
+ """
7
+
8
+
9
+
10
+ from typing import TYPE_CHECKING
11
+
12
+ from selenium.webdriver.remote.webdriver import WebDriver
13
+
14
+ from . import _executejs
15
+
16
+ if TYPE_CHECKING:
17
+ from ..content import Content
18
+
19
+
20
+
21
+ def test_tagues(
22
+ content: 'Content',
23
+ driver: WebDriver,
24
+ ) -> None:
25
+ """
26
+ Perform various tests associated with relevant routines.
27
+
28
+ :param content: Primary class instance for the content.
29
+ :param driver: Selenium driver provided by the library.
30
+ """
31
+
32
+
33
+ driver.get(
34
+ f"""
35
+ data:text/html;
36
+ charset=utf-8,
37
+ <html>
38
+ <head>
39
+ <script>
40
+ {content.scripts('default')}
41
+ {content.scripts('helpers')}
42
+ {content.scripts('moderate')}
43
+ {content.scripts('tagues')}
44
+ </script>
45
+ </head>
46
+ <body></body>
47
+ </html>
48
+ """)
49
+
50
+
51
+ outcome = _executejs(
52
+ driver,
53
+ 'let element ='
54
+ ' tagues(...arguments);'
55
+ 'return'
56
+ ' element[0].outerHTML;',
57
+ ['tag_one', 'tag_two'],
58
+ False,
59
+ wrap=False)
60
+
61
+
62
+ assert outcome == (
63
+ '<div class="encommon_tagues">'
64
+ '<div class="_value">tag_one</div>'
65
+ '<div class="_value">tag_two</div>'
66
+ '</div>')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: encommon
3
- Version: 0.21.0
3
+ Version: 0.22.0
4
4
  Summary: Enasis Network Common Library
5
5
  License: MIT
6
6
  Project-URL: Source, https://github.com/enasisnetwork/encommon
@@ -1,7 +1,7 @@
1
1
  encommon/__init__.py,sha256=YDGzuhpk5Gd1hq54LI0hw1NrrDvrJDrvH20TEy_0l5E,443
2
2
  encommon/conftest.py,sha256=I7Zl2cMytnA-mwSPh0rRjsU0YSlES94jQq6mocRhVUE,1884
3
3
  encommon/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- encommon/version.txt,sha256=NjxqrLtomi72kbaWdGKfZH8a-v68ncNTqG5rCTALJPY,7
4
+ encommon/version.txt,sha256=Rkhj7mlsqGL2riv-6XKOu9hEY1l4JUQu_GKDjZRbAPs,7
5
5
  encommon/colors/__init__.py,sha256=XRiGimMj8oo040NO5a5ZsbsIUxaGVW4tf4xWTPWgnZY,269
6
6
  encommon/colors/color.py,sha256=rDWWL5oMx2SVSBEuRYX43u71nzMhMTZipXAHmEXwAjQ,10919
7
7
  encommon/colors/test/__init__.py,sha256=PjrnBYT0efyvbaGeNx94dm3tP3EVHUHSVs-VGeLEv5g,218
@@ -33,14 +33,14 @@ encommon/parse/test/__init__.py,sha256=PjrnBYT0efyvbaGeNx94dm3tP3EVHUHSVs-VGeLEv
33
33
  encommon/parse/test/test_jinja2.py,sha256=vFi8mzWPDJvFO00aMYSbjLVxctdsSvv_L19r1dVxNr8,3782
34
34
  encommon/parse/test/test_network.py,sha256=-6FmgMzpDAZ4SI6Ccq4jUm9RYtanV24W9aTJyK6Y0W4,4170
35
35
  encommon/times/__init__.py,sha256=QX4iuZ59UlsMbEWbubnVJXJtrOubNxAAAv510urcLUA,972
36
- encommon/times/common.py,sha256=HWgWBbqDoyKHIqeg4bBAZZfRM3499X3WPu8dVCzt_5o,995
36
+ encommon/times/common.py,sha256=tLlQUKU-KMrf1Dy_9qgg2J-8ytVpyqPs5ZXV9_TlvVk,1036
37
37
  encommon/times/duration.py,sha256=1mDrLZozWXWQfqxHS2wzMwpRx5c0EjGDnwzJbzPvTkw,10786
38
38
  encommon/times/params.py,sha256=qg0mLkXVsl54m72kd9uXRvmYKqUR_Ag5PBfnTsrwQhE,4360
39
39
  encommon/times/parse.py,sha256=_PF12z-UOa75SyeUpBXVn7Jjt-c-Pfnzt6pAs_PjXmQ,6496
40
40
  encommon/times/time.py,sha256=mdYl8vDJ0ZbaiH96A1cFHhOn7fExiRnudQJP1M4Xe2E,11746
41
41
  encommon/times/timer.py,sha256=xxS6KVXFuRLq-RkXWMR7MMX5x0HGrEhLlOhRCecuCZY,3225
42
42
  encommon/times/timers.py,sha256=JwvBIfWbXjwoIDQ08k2MAOoMif0Q1jsIJjmFWMxSRGA,9807
43
- encommon/times/unitime.py,sha256=pO2I6qaSxR4HN82QSQYX6fo27xTP-n6bW8TahOG8c2k,1179
43
+ encommon/times/unitime.py,sha256=qSnKzimdST_OGwUVoLDD2vtekBXGPuD8Wu40DSEmEQQ,1254
44
44
  encommon/times/utils.py,sha256=PJ5QsKb3_pYEnD3Sz81d8QDhYQtTIj4HJfMoC9gNwmo,3100
45
45
  encommon/times/window.py,sha256=tnOPz57cwIXVnOEGh7WPvBPhdjenvw1bYxV4mz721n0,8490
46
46
  encommon/times/windows.py,sha256=oxEsCsM8qPQ5AbB8IRK_ONEWzLgXPpft8yR6xUKrb_4,10853
@@ -83,8 +83,54 @@ encommon/utils/test/test_match.py,sha256=QagKpTFdRo23-Y55fSaJrSMpt5jIebScKbz0h8t
83
83
  encommon/utils/test/test_paths.py,sha256=4AzIhQyYFEWhRWHgOZCCzomQ3Zs3EVwRnDQDa6Nq1Mc,1942
84
84
  encommon/utils/test/test_sample.py,sha256=Qf-W0XbjTe5PfG87sdVizL2ymUPRTdX0qQtLGHaTgx8,3539
85
85
  encommon/utils/test/test_stdout.py,sha256=fYiqEaUraD-3hFQYLxMPR4Ti_8CbTjEc8WvReXUA884,6139
86
- encommon-0.21.0.dist-info/LICENSE,sha256=otnXKCtMjPlbHs0wgZ_BWULrp3g_2dWQJ6icRk9nkgg,1071
87
- encommon-0.21.0.dist-info/METADATA,sha256=wY93Eig3-FwAU0dWgJrp9osqjreo0Zcxmojm-1SN-wo,4282
88
- encommon-0.21.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
89
- encommon-0.21.0.dist-info/top_level.txt,sha256=bP8q7-5tLDNm-3XPlqn_bDENfYNug5801H_xfz3BEAM,9
90
- encommon-0.21.0.dist-info/RECORD,,
86
+ encommon/webkit/__init__.py,sha256=zHXF-bGdl6hs2WeBp_xYdc8bQ59vtsTsnB77ek7Cpzw,280
87
+ encommon/webkit/content.py,sha256=q5nYcmMV0LYOxWfGeiS42izZvD6g05CIaiiMEfWjN7k,1874
88
+ encommon/webkit/index.html,sha256=cYmXEViesLXq5uMx9W6Ujty1wgffQdVzNxv0g_gUpaA,5410
89
+ encommon/webkit/images/enasis.svg,sha256=8g7GaE0Gb94SpnF_NbMzoyTI7Mc8Zu-cRI6dc-bfrAY,9417
90
+ encommon/webkit/images/failure.svg,sha256=rWru07mNt_GhxVAd6x4vEf5K91NFZkHaADdG7JVs4k8,436
91
+ encommon/webkit/images/information.svg,sha256=lLHo5nru8mhLS8q7aQrIGrVBa-kLga8Gc_LSn7yD6D4,466
92
+ encommon/webkit/images/success.svg,sha256=qegqcVcjVz6setgCzbcaMY0wWL9C7uKjL8BeUYsupzY,507
93
+ encommon/webkit/images/warning.svg,sha256=CDqdk-e4lGkOvQ6gCrJJfS6ADr82UpcpQsJreZZmsHw,355
94
+ encommon/webkit/scripts/color.js,sha256=zom4T6LwPO4pzlmWteckffIrsUSUfI05fXS9fpntsTQ,717
95
+ encommon/webkit/scripts/datagrid.js,sha256=kYXQuY1039qwauwtTzeG9T7Mh-iRayq4_23w08gA4XI,1615
96
+ encommon/webkit/scripts/datetime.js,sha256=vtNznVMupvAdP4FWCDtHuXQVnRCA3TkPENO4hQdp5tM,2671
97
+ encommon/webkit/scripts/default.js,sha256=Noo-yon568Takgrz2wC5-UTS-XxkozqPgrVINiIfaZk,5007
98
+ encommon/webkit/scripts/duration.js,sha256=adXtKTgKkLJz_1uuzdc7suc7wUEQzpw7DfqnwXGu7f0,2129
99
+ encommon/webkit/scripts/helpers.js,sha256=ohpPeeITlE3xV65NZ-uU4sOZwa4DEY11iItzf4VXL8Q,3529
100
+ encommon/webkit/scripts/image.js,sha256=Y_Vd4K22MzUM9oGcFKxpGsZRYdbYvLQ0flGApqh_GJQ,630
101
+ encommon/webkit/scripts/message.js,sha256=s7lv-8ZxHEGs6q6IebRfl3X1xy9IGXoO5xqI0CCPvAg,517
102
+ encommon/webkit/scripts/moderate.js,sha256=JrLZFwi1e9Wd8D41UPF490K7GBlGHi5x3uEhzo5OmsE,1070
103
+ encommon/webkit/scripts/numeric.js,sha256=szhsFYFhdEC39gyFcueG1eeIp1a53nj8vMxkh-1hac0,2653
104
+ encommon/webkit/scripts/statate.js,sha256=wTDRbuHpnBUUHT9mRXJywEPODF3Cf_uhep7Oe6CciwM,567
105
+ encommon/webkit/scripts/tagues.js,sha256=nS6-M5480M6xx8a4pQxLYNJEs-pkbUEaZ6Www4GY9ew,602
106
+ encommon/webkit/styles/color.css,sha256=34LegW5fuS1HLWAN9vv8EKnrwiMkzuHFLY2QQbQiah8,1433
107
+ encommon/webkit/styles/datagrid.css,sha256=wlVlW4aFpJKzFCRft1T9Dl43xv6Vwz7gZnlHzYFz24c,1518
108
+ encommon/webkit/styles/datetime.css,sha256=3mTiM9-FhgR5EOMYk8sMvR44yh_h9nZxsgcLoawOR_U,1120
109
+ encommon/webkit/styles/default.css,sha256=naG2scDuOL9l0r75u9LmsJRgYHjahgbAlCnvZRJtJ9s,4632
110
+ encommon/webkit/styles/duration.css,sha256=iUTQJWIMf7xaAxXEsJ-_zRZzSPiebxO_mnHZGrymVTk,1012
111
+ encommon/webkit/styles/image.css,sha256=VEFij-V8Gd_N-A91wtlGW_-D2hPggkZvECegG4CrjZg,1786
112
+ encommon/webkit/styles/message.css,sha256=8IEEWkaUPjdd_h2jo8i0X-D9wYCo1SZ4UnmqYI4uZ5A,2560
113
+ encommon/webkit/styles/moderate.css,sha256=XFTKc-IOe6wY7L76aZ6Q1i1R42ffSNagsY6_SDNs1Fk,1373
114
+ encommon/webkit/styles/numeric.css,sha256=PT8bNMnfSRMg4ZPTLH7L3iT0ZQyz5hf8mYxWSIrvB8I,1176
115
+ encommon/webkit/styles/statate.css,sha256=AvrcUvsTwjgPXspv-LZbEVZ8wy6m3mtbUX9mXmC2egA,1510
116
+ encommon/webkit/styles/tagues.css,sha256=v9B2tn2KlG8BzXg8tZChf5RNMVJ2nzkt9d3-7tI1wUw,1165
117
+ encommon/webkit/test/__init__.py,sha256=czJ8GCkhkUQ8DDgHkX14ZJGjgdmbvD6ZDhPGCGuJOUM,942
118
+ encommon/webkit/test/conftest.py,sha256=fNeFCT95xW-PNyJZZA3v3sJvAgjhldlqy0lz88x__3A,1003
119
+ encommon/webkit/test/test_color.py,sha256=N3CnNpHrEzseKa39G42NX4BLOqrqubMfgTT-FENpHQ0,1374
120
+ encommon/webkit/test/test_content.py,sha256=bZp0vc5qEjcWaXGLfN0U3bNIwS36q-uRq-TEHkoNPNg,1571
121
+ encommon/webkit/test/test_datagrid.py,sha256=Shr10cqiBaA2zMwO8rQVvELd_ndngh2ZxZNOncoKjso,1758
122
+ encommon/webkit/test/test_datetime.py,sha256=cU6huMjuzdbK5SnZIEViY7KH-39fzvwkWC2NNblpoFY,1927
123
+ encommon/webkit/test/test_default.py,sha256=XzRpCQ7w_mKSD3X_2v3YywlV4sGzzsZBOdQ6zDRzx_I,5985
124
+ encommon/webkit/test/test_duration.py,sha256=5NibaszwPFJYoTFF3GF6GaG7prQJrmANvCciSBJdk74,1763
125
+ encommon/webkit/test/test_helpers.py,sha256=Ms4PsaUWLyllh05HqiVyBumbN_RJcBXxvfmstsKXvys,7165
126
+ encommon/webkit/test/test_image.py,sha256=RiY2pFPeyb8ofsxOifHHKaLZ1QHxJH90ZE5qFts7joQ,1298
127
+ encommon/webkit/test/test_message.py,sha256=rnI4XYBn4sgFV5OsE2sSjOOmPpqvSjazFGQxVnffF2w,1371
128
+ encommon/webkit/test/test_moderate.py,sha256=KitKGBtwHOQm0pXXZA5nl9MwAi2pbHOsKhMB-ZOOgPw,1674
129
+ encommon/webkit/test/test_numeric.py,sha256=9Jqiyo-Bh572QJSyd3gqRwYTifnqqzE7_cNCmLn0CG0,3531
130
+ encommon/webkit/test/test_statate.py,sha256=4VvmyJhsK3TSK-hq3TzkzwPkXY-GPTU_7uJf-zG_y_s,1760
131
+ encommon/webkit/test/test_tagues.py,sha256=LQWk6rSBoBxAu-YmUOU8uWNki5RBzk5lp0dbFpySg68,1431
132
+ encommon-0.22.0.dist-info/LICENSE,sha256=otnXKCtMjPlbHs0wgZ_BWULrp3g_2dWQJ6icRk9nkgg,1071
133
+ encommon-0.22.0.dist-info/METADATA,sha256=qqRf2p0GgYm2wi6RpsfFurjqIOfe5vboisZ8_sufbyo,4282
134
+ encommon-0.22.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
135
+ encommon-0.22.0.dist-info/top_level.txt,sha256=bP8q7-5tLDNm-3XPlqn_bDENfYNug5801H_xfz3BEAM,9
136
+ encommon-0.22.0.dist-info/RECORD,,