encommon 0.22.3__py3-none-any.whl → 0.22.5__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.
encommon/colors/color.py CHANGED
@@ -79,9 +79,9 @@ class Color:
79
79
  self,
80
80
  ) -> int:
81
81
  """
82
- Built-in method called when performing hashing operation.
82
+ Built-in method used when performing hashing operations.
83
83
 
84
- :returns: Boolean indicating outcome from the operation.
84
+ :returns: Integer hash value for the internal reference.
85
85
  """
86
86
 
87
87
  return hash(self.__source)
encommon/parse/network.py CHANGED
@@ -55,9 +55,9 @@ class Network:
55
55
  self,
56
56
  ) -> int:
57
57
  """
58
- Built-in method called when performing hashing operation.
58
+ Built-in method used when performing hashing operations.
59
59
 
60
- :returns: Boolean indicating outcome from the operation.
60
+ :returns: Integer hash value for the internal reference.
61
61
  """
62
62
 
63
63
  return hash(self.__source)
@@ -132,9 +132,9 @@ class Duration:
132
132
  self,
133
133
  ) -> int:
134
134
  """
135
- Built-in method called when performing hashing operation.
135
+ Built-in method used when performing hashing operations.
136
136
 
137
- :returns: Boolean indicating outcome from the operation.
137
+ :returns: Integer hash value for the internal reference.
138
138
  """
139
139
 
140
140
  return hash(self.__source)
encommon/times/time.py CHANGED
@@ -129,9 +129,9 @@ class Time:
129
129
  self,
130
130
  ) -> int:
131
131
  """
132
- Built-in method called when performing hashing operation.
132
+ Built-in method used when performing hashing operations.
133
133
 
134
- :returns: Boolean indicating outcome from the operation.
134
+ :returns: Integer hash value for the internal reference.
135
135
  """
136
136
 
137
137
  return hash(self.__source)
@@ -13,6 +13,7 @@ from .classes import lattrs
13
13
  from .dicts import merge_dicts
14
14
  from .dicts import sort_dict
15
15
  from .empty import Empty
16
+ from .funcs import funcname
16
17
  from .lists import dedup_list
17
18
  from .lists import fuzzy_list
18
19
  from .lists import inlist
@@ -42,6 +43,7 @@ __all__ = [
42
43
  'DictStrAny',
43
44
  'Empty',
44
45
  'expate',
46
+ 'funcname',
45
47
  'getate',
46
48
  'hasstr',
47
49
  'impate',
encommon/types/empty.py CHANGED
@@ -78,9 +78,9 @@ class EmptyType:
78
78
  self,
79
79
  ) -> int:
80
80
  """
81
- Built-in method called when performing hashing operation.
81
+ Built-in method used when performing hashing operations.
82
82
 
83
- :returns: Boolean indicating outcome from the operation.
83
+ :returns: Integer hash value for the internal reference.
84
84
  """
85
85
 
86
86
  return hash(EmptyType)
@@ -0,0 +1,53 @@
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 inspect import currentframe
11
+
12
+
13
+
14
+ def funcname() -> str:
15
+ """
16
+ Return the current function name where code is running.
17
+
18
+ :returns: Current function name where code is running.
19
+ """
20
+
21
+ frame = currentframe()
22
+
23
+ assert frame is not None, (
24
+ 'Frame not present')
25
+
26
+ caller = frame.f_back
27
+
28
+ assert caller is not None, (
29
+ 'Caller not present')
30
+
31
+ name = caller.f_code.co_name
32
+ focals = caller.f_locals
33
+
34
+
35
+ if 'self' in focals:
36
+
37
+ parent = (
38
+ focals['self']
39
+ .__class__
40
+ .__name__)
41
+
42
+ return f'{parent}.{name}'
43
+
44
+ elif 'cls' in focals:
45
+
46
+ parent = (
47
+ focals['cls']
48
+ .__name__)
49
+
50
+ return f'{parent}.{name}'
51
+
52
+
53
+ return name
@@ -0,0 +1,33 @@
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 ..funcs import funcname
11
+
12
+
13
+
14
+ def test_funcname() -> None:
15
+ """
16
+ Perform various tests associated with relevant routines.
17
+ """
18
+
19
+ assert funcname() == 'test_funcname'
20
+
21
+
22
+ class Testing:
23
+
24
+ def test1(self) -> str:
25
+ return funcname()
26
+
27
+ @classmethod
28
+ def test2(cls) -> str:
29
+ return funcname()
30
+
31
+
32
+ assert Testing().test1() == 'Testing.test1'
33
+ assert Testing.test2() == 'Testing.test2'
@@ -7,6 +7,7 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ from .files import append_text
10
11
  from .files import read_text
11
12
  from .files import save_text
12
13
  from .match import fuzz_match
@@ -27,6 +28,7 @@ from .stdout import strip_ansi
27
28
 
28
29
 
29
30
  __all__ = [
31
+ 'append_text',
30
32
  'array_ansi',
31
33
  'fuzz_match',
32
34
  'kvpair_ansi',
encommon/utils/files.py CHANGED
@@ -23,6 +23,8 @@ def read_text(
23
23
 
24
24
  Example
25
25
  -------
26
+ >>> path.exists()
27
+ False
26
28
  >>> save_text(path, 'foo')
27
29
  'foo'
28
30
  >>> read_text(path)
@@ -52,6 +54,8 @@ def save_text(
52
54
 
53
55
  Example
54
56
  -------
57
+ >>> path.exists()
58
+ False
55
59
  >>> save_text(path, 'foo')
56
60
  'foo'
57
61
  >>> read_text(path)
@@ -69,3 +73,38 @@ def save_text(
69
73
  encoding='utf-8')
70
74
 
71
75
  return read_text(path)
76
+
77
+
78
+
79
+ def append_text(
80
+ path: str | Path,
81
+ content: str,
82
+ ) -> None:
83
+ """
84
+ Append the provided text content into provided file path.
85
+
86
+ .. testsetup::
87
+ >>> tmpdir = getfixture('tmpdir')
88
+ >>> path = Path(f'{tmpdir}/text.txt')
89
+
90
+ Example
91
+ -------
92
+ >>> path.exists()
93
+ False
94
+ >>> append_text(path, 'foo')
95
+ >>> append_text(path, 'foo')
96
+ >>> read_text(path)
97
+ 'foofoo'
98
+
99
+ :param path: Complete or relative path to the text file.
100
+ :param content: Content that will be written to the file.
101
+ """
102
+
103
+ path = Path(path).resolve()
104
+
105
+ with path.open(
106
+ mode='a',
107
+ encoding='utf-8',
108
+ ) as file:
109
+
110
+ file.write(f'{content}')
@@ -9,6 +9,7 @@ is permitted, for more information consult the project license file.
9
9
 
10
10
  from pathlib import Path
11
11
 
12
+ from ..files import append_text
12
13
  from ..files import read_text
13
14
  from ..files import save_text
14
15
 
@@ -33,3 +34,30 @@ def test_readsave_text(
33
34
  f'{tmp_path}/test.txt')
34
35
 
35
36
  assert loaded == content
37
+
38
+
39
+
40
+ def test_append_text(
41
+ tmp_path: Path,
42
+ ) -> None:
43
+ """
44
+ Perform various tests associated with relevant routines.
45
+
46
+ :param tmp_path: pytest object for temporal filesystem.
47
+ """
48
+
49
+ content = 'pytest'
50
+
51
+ append_text(
52
+ f'{tmp_path}/test.txt',
53
+ content)
54
+
55
+ append_text(
56
+ f'{tmp_path}/test.txt',
57
+ content)
58
+
59
+ loaded = read_text(
60
+ f'{tmp_path}/test.txt')
61
+
62
+ assert loaded == (
63
+ f'{content}{content}')
encommon/version.txt CHANGED
@@ -1 +1 @@
1
- 0.22.3
1
+ 0.22.5
@@ -7,11 +7,15 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Construct element for displaying the specified color.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function colordiv(
11
16
  input,
12
17
  label=null,
13
18
  ) {
14
- // Construct element for displaying the specified color.
15
19
 
16
20
  assert(!isnull(input));
17
21
 
@@ -7,11 +7,15 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Construct the table with the header using the contents.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function datagrid(
11
16
  fields,
12
17
  values,
13
18
  ) {
14
- // Construct the table with the header using the contents.
15
19
 
16
20
  assert(!isnull(fields));
17
21
  assert(!isnull(values));
@@ -34,10 +38,14 @@ function datagrid(
34
38
 
35
39
 
36
40
 
41
+ /**
42
+ * Construct the header for use with the table contents.
43
+ *
44
+ * @returns {Object} jQuery-like object for the element.
45
+ */
37
46
  function _table_header(
38
47
  fields,
39
48
  ) {
40
- // Construct the header for use with the table contents.
41
49
 
42
50
  let element = $('<thead/>');
43
51
  let trow = $('<tr/>');
@@ -63,11 +71,15 @@ function _table_header(
63
71
 
64
72
 
65
73
 
74
+ /**
75
+ * Construct the records for use with the table contents.
76
+ *
77
+ * @returns {Object} jQuery-like object for the element.
78
+ */
66
79
  function _table_records(
67
80
  fields,
68
81
  values,
69
82
  ) {
70
- // Construct the records for use with the table contents.
71
83
 
72
84
  let element = $('<tbody/>');
73
85
 
@@ -7,10 +7,14 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Return the timestamp using provided format for instance.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function datestamp(
11
16
  value,
12
17
  ) {
13
- // Return the timestamp using provided format for instance.
14
18
 
15
19
  assert(!isnull(value));
16
20
 
@@ -140,10 +144,12 @@ function datestamp(
140
144
 
141
145
 
142
146
 
147
+ /**
148
+ * Return the located timezone object for the provided date.
149
+ */
143
150
  function _tzname(
144
151
  date,
145
152
  ) {
146
- // Return the located timezone object for the provided date.
147
153
 
148
154
  assert(!isnull(date));
149
155
 
@@ -7,8 +7,10 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * jQuery like object for use in Enasis Network projects.
12
+ */
10
13
  (function (global) {
11
- // jQuery like object for use in Enasis Network projects.
12
14
 
13
15
  'use strict';
14
16
 
@@ -98,11 +100,13 @@ is permitted, for more information consult the project license file.
98
100
 
99
101
 
100
102
 
103
+ /**
104
+ * Helper function for Enasis Network jQuery replacement.
105
+ */
101
106
  function _enquery(
102
107
  source,
103
108
  selector,
104
109
  ) {
105
- // Helper function for Enasis Network jQuery replacement.
106
110
 
107
111
  const create = /^<(\w+)\/>$/;
108
112
 
@@ -127,10 +131,14 @@ function _enquery(
127
131
 
128
132
 
129
133
 
134
+ /**
135
+ * Helper function for Enasis Network jQuery replacement.
136
+ *
137
+ * @returns {Object} jQuery-like object for the element.
138
+ */
130
139
  function _enquery_each(
131
140
  element,
132
141
  ) {
133
- // Helper function for Enasis Network jQuery replacement.
134
142
 
135
143
  let items = this.elements;
136
144
 
@@ -142,11 +150,15 @@ function _enquery_each(
142
150
 
143
151
 
144
152
 
153
+ /**
154
+ * Helper function for Enasis Network jQuery replacement.
155
+ *
156
+ * @returns {Object} jQuery-like object for the element.
157
+ */
145
158
  function _enquery_css(
146
159
  name,
147
160
  value,
148
161
  ) {
149
- // Helper function for Enasis Network jQuery replacement.
150
162
 
151
163
  function _each() {
152
164
  this.style[name] = value; }
@@ -155,10 +167,14 @@ function _enquery_css(
155
167
 
156
168
 
157
169
 
170
+ /**
171
+ * Helper function for Enasis Network jQuery replacement.
172
+ *
173
+ * @returns {Object} jQuery-like object for the element.
174
+ */
158
175
  function _enquery_addcls(
159
176
  name,
160
177
  ) {
161
- // Helper function for Enasis Network jQuery replacement.
162
178
 
163
179
  function _each() {
164
180
  this.classList
@@ -168,10 +184,14 @@ function _enquery_addcls(
168
184
 
169
185
 
170
186
 
187
+ /**
188
+ * Helper function for Enasis Network jQuery replacement.
189
+ *
190
+ * @returns {Object} jQuery-like object for the element.
191
+ */
171
192
  function _enquery_remcls(
172
193
  name,
173
194
  ) {
174
- // Helper function for Enasis Network jQuery replacement.
175
195
 
176
196
  function _each() {
177
197
  this.classList
@@ -181,8 +201,12 @@ function _enquery_remcls(
181
201
 
182
202
 
183
203
 
204
+ /**
205
+ * Helper function for Enasis Network jQuery replacement.
206
+ *
207
+ * @returns {Object} jQuery-like object for the element.
208
+ */
184
209
  function _enquery_hide() {
185
- // Helper function for Enasis Network jQuery replacement.
186
210
 
187
211
 
188
212
  function _each() {
@@ -204,8 +228,12 @@ function _enquery_hide() {
204
228
 
205
229
 
206
230
 
231
+ /**
232
+ * Helper function for Enasis Network jQuery replacement.
233
+ *
234
+ * @returns {Object} jQuery-like object for the element.
235
+ */
207
236
  function _enquery_show() {
208
- // Helper function for Enasis Network jQuery replacement.
209
237
 
210
238
 
211
239
  function _each() {
@@ -232,10 +260,15 @@ function _enquery_show() {
232
260
 
233
261
 
234
262
 
263
+ /**
264
+ * Helper function for Enasis Network jQuery replacement.
265
+ *
266
+ * @returns {Object} jQuery-like object for the element
267
+ * or the text value in first element.
268
+ */
235
269
  function _enquery_text(
236
270
  text,
237
271
  ) {
238
- // Helper function for Enasis Network jQuery replacement.
239
272
 
240
273
  if (text === undefined) {
241
274
 
@@ -253,10 +286,15 @@ function _enquery_text(
253
286
 
254
287
 
255
288
 
289
+ /**
290
+ * Helper function for Enasis Network jQuery replacement.
291
+ *
292
+ * @returns {Object} jQuery-like object for the element
293
+ * or the HTML value in first element.
294
+ */
256
295
  function _enquery_html(
257
296
  html,
258
297
  ) {
259
- // Helper function for Enasis Network jQuery replacement.
260
298
 
261
299
  if (html === undefined) {
262
300
 
@@ -280,10 +318,14 @@ function _enquery_html(
280
318
 
281
319
 
282
320
 
321
+ /**
322
+ * Helper function for Enasis Network jQuery replacement.
323
+ *
324
+ * @returns {Object} jQuery-like object for the element.
325
+ */
283
326
  function _enquery_append(
284
327
  element,
285
328
  ) {
286
- // Helper function for Enasis Network jQuery replacement.
287
329
 
288
330
  assert(element.enquery)
289
331
 
@@ -305,10 +347,14 @@ function _enquery_append(
305
347
 
306
348
 
307
349
 
350
+ /**
351
+ * Helper function for Enasis Network jQuery replacement.
352
+ *
353
+ * @returns {Object} jQuery-like object for the element.
354
+ */
308
355
  function _enquery_replace(
309
356
  element,
310
357
  ) {
311
- // Helper function for Enasis Network jQuery replacement.
312
358
 
313
359
  assert(element.enquery)
314
360
 
@@ -330,11 +376,16 @@ function _enquery_replace(
330
376
 
331
377
 
332
378
 
379
+ /**
380
+ * Helper function for Enasis Network jQuery replacement.
381
+ *
382
+ * @returns {Object} jQuery-like object for the element
383
+ * or the attr value in first element.
384
+ */
333
385
  function _enquery_attr(
334
386
  name,
335
387
  value,
336
388
  ) {
337
- // Helper function for Enasis Network jQuery replacement.
338
389
 
339
390
  if (this.length === 0)
340
391
  return undefined;
@@ -359,11 +410,16 @@ function _enquery_attr(
359
410
 
360
411
 
361
412
 
413
+ /**
414
+ * Helper function for Enasis Network jQuery replacement.
415
+ *
416
+ * @returns {Object} jQuery-like object for the element
417
+ * or the prop value in first element.
418
+ */
362
419
  function _enquery_prop(
363
420
  name,
364
421
  value,
365
422
  ) {
366
- // Helper function for Enasis Network jQuery replacement.
367
423
 
368
424
  if (this.length === 0)
369
425
  return undefined;
@@ -376,13 +432,18 @@ function _enquery_prop(
376
432
  this[name] = value; }
377
433
 
378
434
  if (value !== undefined)
379
- return this.each(_each);
435
+ return this.each(_each);
380
436
 
381
437
 
382
438
  return this[0][name]; }
383
439
 
384
440
 
385
441
 
442
+ /**
443
+ * Helper function for Enasis Network jQuery replacement.
444
+ *
445
+ * @returns {Object} jQuery-like object for the element.
446
+ */
386
447
  function _enquery_clone() {
387
448
 
388
449
  let clones =
@@ -7,10 +7,14 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Convert the provided seconds in a human friendly format.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function duration(
11
16
  seconds,
12
17
  ) {
13
- // Convert the provided seconds in a human friendly format.
14
18
 
15
19
  assert(!isnull(seconds));
16
20
 
@@ -128,10 +132,12 @@ function duration(
128
132
 
129
133
 
130
134
 
135
+ /**
136
+ * Determine the time in seconds occurring since instance.
137
+ */
131
138
  function _since(
132
139
  value,
133
140
  ) {
134
- // Determine the time in seconds occurring since instance.
135
141
 
136
142
  assert(!isnull(value));
137
143
 
@@ -7,10 +7,14 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Assert the provided condition similar how using Python.
12
+ *
13
+ * @returns {Boolean} Boolean for the conditional outcome.
14
+ */
10
15
  function assert(
11
16
  condition,
12
17
  ) {
13
- // Assert the provided condition similar how using Python.
14
18
 
15
19
  if (condition)
16
20
  return true;
@@ -19,10 +23,12 @@ function assert(
19
23
 
20
24
 
21
25
 
26
+ /**
27
+ * Attach the callback to the window session ready state.
28
+ */
22
29
  function whenready(
23
30
  callback,
24
31
  ) {
25
- // Attach the callback to the window session ready state.
26
32
 
27
33
  assert(!isnull(callback));
28
34
 
@@ -39,10 +45,14 @@ function whenready(
39
45
 
40
46
 
41
47
 
48
+ /**
49
+ * Return the boolean indicating the conditional outcome.
50
+ *
51
+ * @returns {Boolean} Boolean for the conditional outcome.
52
+ */
42
53
  function isnull(
43
54
  value,
44
55
  ) {
45
- // Return the boolean indicating the conditional outcome.
46
56
 
47
57
  let haystack = [null, undefined];
48
58
 
@@ -53,10 +63,14 @@ function isnull(
53
63
 
54
64
 
55
65
 
66
+ /**
67
+ * Return the boolean indicating the conditional outcome.
68
+ *
69
+ * @returns {Boolean} Boolean for the conditional outcome.
70
+ */
56
71
  function isempty(
57
72
  value,
58
73
  ) {
59
- // Return the boolean indicating the conditional outcome.
60
74
 
61
75
  if (isstr(value))
62
76
  return value.length == 0;
@@ -77,10 +91,14 @@ function isempty(
77
91
 
78
92
 
79
93
 
94
+ /**
95
+ * Return the boolean indicating the conditional outcome.
96
+ *
97
+ * @returns {Boolean} Boolean for the conditional outcome.
98
+ */
80
99
  function isbool(
81
100
  value,
82
101
  ) {
83
- // Return the boolean indicating the conditional outcome.
84
102
 
85
103
  let haystack = [true, false];
86
104
 
@@ -91,10 +109,14 @@ function isbool(
91
109
 
92
110
 
93
111
 
112
+ /**
113
+ * Return the boolean indicating the conditional outcome.
114
+ *
115
+ * @returns {Boolean} Boolean for the conditional outcome.
116
+ */
94
117
  function isstr(
95
118
  value,
96
119
  ) {
97
- // Return the boolean indicating the conditional outcome.
98
120
 
99
121
  if (typeof value === 'string')
100
122
  return true;
@@ -103,10 +125,14 @@ function isstr(
103
125
 
104
126
 
105
127
 
128
+ /**
129
+ * Return the boolean indicating the conditional outcome.
130
+ *
131
+ * @returns {Boolean} Boolean for the conditional outcome.
132
+ */
106
133
  function isnum(
107
134
  value,
108
135
  ) {
109
- // Return the boolean indicating the conditional outcome.
110
136
 
111
137
  if (typeof value === 'number')
112
138
  return true;
@@ -115,10 +141,14 @@ function isnum(
115
141
 
116
142
 
117
143
 
144
+ /**
145
+ * Return the boolean indicating the conditional outcome.
146
+ *
147
+ * @returns {Boolean} Boolean for the conditional outcome.
148
+ */
118
149
  function isquery(
119
150
  value,
120
151
  ) {
121
- // Return the boolean indicating the conditional outcome.
122
152
 
123
153
  try {
124
154
 
@@ -131,10 +161,14 @@ function isquery(
131
161
 
132
162
 
133
163
 
164
+ /**
165
+ * Return the boolean indicating the conditional outcome.
166
+ *
167
+ * @returns {Boolean} Boolean for the conditional outcome.
168
+ */
134
169
  function isnode(
135
170
  value,
136
171
  ) {
137
- // Return the boolean indicating the conditional outcome.
138
172
 
139
173
  if (value instanceof Node)
140
174
  return true;
@@ -143,10 +177,14 @@ function isnode(
143
177
 
144
178
 
145
179
 
180
+ /**
181
+ * Return the boolean indicating the conditional outcome.
182
+ *
183
+ * @returns {Boolean} Boolean for the conditional outcome.
184
+ */
146
185
  function isnodes(
147
186
  value,
148
187
  ) {
149
- // Return the boolean indicating the conditional outcome.
150
188
 
151
189
  if (value instanceof NodeList)
152
190
  return true;
@@ -155,10 +193,14 @@ function isnodes(
155
193
 
156
194
 
157
195
 
196
+ /**
197
+ * Return the boolean indicating the conditional outcome.
198
+ *
199
+ * @returns {Boolean} Boolean for the conditional outcome.
200
+ */
158
201
  function istime(
159
202
  value,
160
203
  ) {
161
- // Return the boolean indicating the conditional outcome.
162
204
 
163
205
  let date =
164
206
  new Date(value);
@@ -170,10 +212,14 @@ function istime(
170
212
 
171
213
 
172
214
 
215
+ /**
216
+ * Return the boolean indicating the conditional outcome.
217
+ *
218
+ * @returns {Boolean} Boolean for the conditional outcome.
219
+ */
173
220
  function islist(
174
221
  value,
175
222
  ) {
176
- // Return the boolean indicating the conditional outcome.
177
223
 
178
224
  if (Array.isArray(value))
179
225
  return true;
@@ -182,10 +228,14 @@ function islist(
182
228
 
183
229
 
184
230
 
231
+ /**
232
+ * Return the boolean indicating the conditional outcome.
233
+ *
234
+ * @returns {Boolean} Boolean for the conditional outcome.
235
+ */
185
236
  function isdict(
186
237
  value,
187
238
  ) {
188
- // Return the boolean indicating the conditional outcome.
189
239
 
190
240
  if (typeof(value) == 'object'
191
241
  && !isnull(value)
@@ -196,10 +246,14 @@ function isdict(
196
246
 
197
247
 
198
248
 
249
+ /**
250
+ * Return the boolean indicating the conditional outcome.
251
+ *
252
+ * @returns {Boolean} Boolean for the conditional outcome.
253
+ */
199
254
  function istrue(
200
255
  value,
201
256
  ) {
202
- // Return the boolean indicating the conditional outcome.
203
257
 
204
258
  if (value === true)
205
259
  return true;
@@ -208,10 +262,14 @@ function istrue(
208
262
 
209
263
 
210
264
 
265
+ /**
266
+ * Return the boolean indicating the conditional outcome.
267
+ *
268
+ * @returns {Boolean} Boolean for the conditional outcome.
269
+ */
211
270
  function isfalse(
212
271
  value,
213
272
  ) {
214
- // Return the boolean indicating the conditional outcome.
215
273
 
216
274
  if (value === false)
217
275
  return true;
@@ -220,10 +278,12 @@ function isfalse(
220
278
 
221
279
 
222
280
 
281
+ /**
282
+ * Return the object value from the provided JSON string.
283
+ */
223
284
  function loads(
224
285
  value,
225
286
  ) {
226
- // Return the object value from the provided JSON string.
227
287
 
228
288
  assert(isstr(value));
229
289
 
@@ -231,11 +291,13 @@ function loads(
231
291
 
232
292
 
233
293
 
294
+ /**
295
+ * Return the JSON string from the provided object value.
296
+ */
234
297
  function dumps(
235
298
  value,
236
299
  indent=null,
237
300
  ) {
238
- // Return the JSON string from the provided object value.
239
301
 
240
302
  assert(!isnull(value));
241
303
  assert(!isstr(value));
@@ -7,11 +7,15 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Return the simple construct for SVG based icon images.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function svgicon(
11
16
  image,
12
17
  dimension=null,
13
18
  ) {
14
- // Return the simple construct for SVG based icon images.
15
19
 
16
20
  assert(!isnull(image));
17
21
 
@@ -7,11 +7,15 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Generate the severity based toast like message element.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function message(
11
16
  level,
12
17
  about=null,
13
18
  ) {
14
- // Generate the severity based toast like message element.
15
19
 
16
20
  assert(!isnull(level));
17
21
 
@@ -7,12 +7,16 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Construct for containing a wide variety of value types.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function moderate(
11
16
  label=null,
12
17
  icon=null,
13
18
  small=null,
14
19
  ) {
15
- // Construct for containing a wide variety of value types.
16
20
 
17
21
 
18
22
  let element =
@@ -7,11 +7,15 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Construct for containing a wide variety of value types.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function numeric(
11
16
  value,
12
17
  unit=null,
13
18
  ) {
14
- // Construct for containing a wide variety of value types.
15
19
 
16
20
  assert(!isnull(value));
17
21
 
@@ -65,10 +69,14 @@ function numeric(
65
69
 
66
70
 
67
71
 
72
+ /**
73
+ * Construct for containing a wide variety of value types.
74
+ *
75
+ * @returns {Object} jQuery-like object for the element.
76
+ */
68
77
  function numeric_count(
69
78
  value,
70
79
  ) {
71
- // Construct for containing a wide variety of value types.
72
80
 
73
81
  assert(!isnull(value));
74
82
 
@@ -104,10 +112,14 @@ function numeric_count(
104
112
 
105
113
 
106
114
 
115
+ /**
116
+ * Construct for containing a wide variety of value types.
117
+ *
118
+ * @returns {Object} jQuery-like object for the element.
119
+ */
107
120
  function numeric_bytes(
108
121
  value,
109
122
  ) {
110
- // Construct for containing a wide variety of value types.
111
123
 
112
124
  assert(!isnull(value));
113
125
 
@@ -143,10 +155,14 @@ function numeric_bytes(
143
155
 
144
156
 
145
157
 
158
+ /**
159
+ * Construct for containing a wide variety of value types.
160
+ *
161
+ * @returns {Object} jQuery-like object for the element.
162
+ */
146
163
  function numeric_ftemp(
147
164
  value,
148
165
  ) {
149
- // Construct for containing a wide variety of value types.
150
166
 
151
167
  assert(!isnull(value));
152
168
 
@@ -166,10 +182,14 @@ function numeric_ftemp(
166
182
 
167
183
 
168
184
 
185
+ /**
186
+ * Construct for containing a wide variety of value types.
187
+ *
188
+ * @returns {Object} jQuery-like object for the element.
189
+ */
169
190
  function numeric_cftemp(
170
191
  value,
171
192
  ) {
172
- // Construct for containing a wide variety of value types.
173
193
 
174
194
  assert(!isnull(value));
175
195
 
@@ -7,12 +7,16 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Construct for containing the value status information.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function statate(
11
16
  status,
12
17
  label=null,
13
18
  small=null,
14
19
  ) {
15
- // Construct for containing the value status information.
16
20
 
17
21
  assert(!isnull(status));
18
22
 
@@ -7,11 +7,15 @@ is permitted, for more information consult the project license file.
7
7
 
8
8
 
9
9
 
10
+ /**
11
+ * Construct for containing the values that are tag like.
12
+ *
13
+ * @returns {Object} jQuery-like object for the element.
14
+ */
10
15
  function tagues(
11
16
  values,
12
17
  brafter=true,
13
18
  ) {
14
- // Construct for containing the values that are tag like.
15
19
 
16
20
  assert(!isnull(values));
17
21
 
@@ -13,12 +13,12 @@ is permitted, for more information consult the project license file.
13
13
 
14
14
  :root {
15
15
 
16
- --background: var(--color-teal-back);
17
- --foreground: var(--color-text-lite);
18
-
19
16
  --pretty: var(--color-teal-lite);
20
17
  --gritty: var(--color-teal-dark);
21
18
 
19
+ --background: var(--color-teal-back);
20
+ --foreground: var(--color-text-lite);
21
+
22
22
  --scroll: var(--color-teal-dark); }
23
23
 
24
24
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: encommon
3
- Version: 0.22.3
3
+ Version: 0.22.5
4
4
  Summary: Enasis Network Common Library
5
5
  License: MIT
6
6
  Project-URL: Source, https://github.com/enasisnetwork/encommon
@@ -1,9 +1,9 @@
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=r3a6YGG-u69k-VBftOr9MFlKWNsYOQQoXGt-j4xqdwE,7
4
+ encommon/version.txt,sha256=1_2Pa7I6bnAVrcxjripp4FkoMeyHLQldx8uC7l2MixQ,7
5
5
  encommon/colors/__init__.py,sha256=XRiGimMj8oo040NO5a5ZsbsIUxaGVW4tf4xWTPWgnZY,269
6
- encommon/colors/color.py,sha256=rDWWL5oMx2SVSBEuRYX43u71nzMhMTZipXAHmEXwAjQ,10919
6
+ encommon/colors/color.py,sha256=YmmJzwTGdTafe_cWENvvoyW4YCyeycVIqCDJYLr4k-w,10918
7
7
  encommon/colors/test/__init__.py,sha256=PjrnBYT0efyvbaGeNx94dm3tP3EVHUHSVs-VGeLEv5g,218
8
8
  encommon/colors/test/test_color.py,sha256=ljAcVJ_DMeDcL_8cG05-uvxu_jErylUf3RDaswpn9-g,4596
9
9
  encommon/config/__init__.py,sha256=iZdbW7A4m7iN4xt5cEeQqo0Klqs-CaPLdD5ocLmUYi8,856
@@ -28,16 +28,16 @@ encommon/crypts/test/test_crypts.py,sha256=YKB4Kra-5CRQ8gsLLCYj2s4mjlPuibszUWClP
28
28
  encommon/crypts/test/test_hashes.py,sha256=HEvKHTkWy6Xehh5fRHmntovGbkjWEgMsrVQCmMCBLtA,1223
29
29
  encommon/parse/__init__.py,sha256=6uV4GCm_nOYC77x2jQvTDsa0F6vBGRbCgju_HCc96zM,422
30
30
  encommon/parse/jinja2.py,sha256=ZfQN79xLwdPevozRD2aF1OpWDf0_lIWfl2o-4QBW8gY,7055
31
- encommon/parse/network.py,sha256=PgQ6xV6Y9KmyH0iXqQ-b88Gtkrry75Fzc-tZd-BH0ng,8771
31
+ encommon/parse/network.py,sha256=V2JvQ4XHUeo4wxNycXroBHDz8gLgo6BI9wJkr0f4qjc,8770
32
32
  encommon/parse/test/__init__.py,sha256=PjrnBYT0efyvbaGeNx94dm3tP3EVHUHSVs-VGeLEv5g,218
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
36
  encommon/times/common.py,sha256=tLlQUKU-KMrf1Dy_9qgg2J-8ytVpyqPs5ZXV9_TlvVk,1036
37
- encommon/times/duration.py,sha256=1mDrLZozWXWQfqxHS2wzMwpRx5c0EjGDnwzJbzPvTkw,10786
37
+ encommon/times/duration.py,sha256=ffmzBHGZvUucactH6yjUZGrvG6VEuAgMUgdvuEkKMhU,10785
38
38
  encommon/times/params.py,sha256=qg0mLkXVsl54m72kd9uXRvmYKqUR_Ag5PBfnTsrwQhE,4360
39
39
  encommon/times/parse.py,sha256=_PF12z-UOa75SyeUpBXVn7Jjt-c-Pfnzt6pAs_PjXmQ,6496
40
- encommon/times/time.py,sha256=mdYl8vDJ0ZbaiH96A1cFHhOn7fExiRnudQJP1M4Xe2E,11746
40
+ encommon/times/time.py,sha256=Px_9Ifae7GKSY557FAbG1g9cwy3a6VZL09puAbinztQ,11745
41
41
  encommon/times/timer.py,sha256=xxS6KVXFuRLq-RkXWMR7MMX5x0HGrEhLlOhRCecuCZY,3225
42
42
  encommon/times/timers.py,sha256=JwvBIfWbXjwoIDQ08k2MAOoMif0Q1jsIJjmFWMxSRGA,9807
43
43
  encommon/times/unitime.py,sha256=MwYUJBdX_Rj7pW8QoMtZMUyHa4lsdZKryTdBCpVjnpY,1316
@@ -55,10 +55,11 @@ encommon/times/test/test_unitime.py,sha256=5i4UjBCw8R9h-Lw963GfB_dHBMEQhjvv1k-t2
55
55
  encommon/times/test/test_utils.py,sha256=WkzHJY6zOt02Ujg5FItOo1nPtktz5ss8ODmG1tRQaaw,2056
56
56
  encommon/times/test/test_window.py,sha256=6ySO5DaYzg1bsVNCqB6u71rKWc0vpolxQ09ruoswN2c,6138
57
57
  encommon/times/test/test_windows.py,sha256=Sq31BCvJtEN9OGGYXFKiagVZP0kc1n6HuaEBNwbkuks,4496
58
- encommon/types/__init__.py,sha256=ABenLJ4SOSAN1kRMKQrAZ4A-eYtr7g42hhb1BtuhzPo,1225
58
+ encommon/types/__init__.py,sha256=rly7loMD1R7YU83u90KqPYiifjZAX_UAXpVGcB_Xerk,1269
59
59
  encommon/types/classes.py,sha256=FYFTu8Uj-74JWudHOlhaOrsXXPxitorBfM9_QM3EGSU,1689
60
60
  encommon/types/dicts.py,sha256=IuLoVdtilhM83ujT74mcz0Zi1HI87P4k7wjnnyMxPag,2821
61
- encommon/types/empty.py,sha256=n5y5maXkcM3xNYNYGK6iqvk98ivQSeguaedwc0HoMv4,2739
61
+ encommon/types/empty.py,sha256=5ykxcpoGtOyxDPW0DPPrT1q1mZxTOL2KuBqwkM5SXHc,2738
62
+ encommon/types/funcs.py,sha256=2nCAwFKY9XEsDb8bC9l5AsXyec1XyTdEIJLRzaXp_8w,964
62
63
  encommon/types/lists.py,sha256=AX-siqXfLwm_5mGDsomg_7XWalZOYLE60D3wHwbNEzo,2358
63
64
  encommon/types/notate.py,sha256=xcvifAe5tXVK0NoxE5P-OEbJXp4UYa5RGsXU-A1TKA4,10698
64
65
  encommon/types/strings.py,sha256=LW2WZND64cKE1LhNip3vqsoP3elLsUP6cpS0dYnUKGE,2800
@@ -67,18 +68,19 @@ encommon/types/test/__init__.py,sha256=WZm1yZbFd2VQg-E1b6a02E6V2QXmIWiW5TIiKFFPV
67
68
  encommon/types/test/test_classes.py,sha256=CjthMInwz5WB7aTc7-GpzgcYAvkF9dRmC6nXJVoE91k,1475
68
69
  encommon/types/test/test_dicts.py,sha256=W--IcPwvdKaFGs_00tvWBGziFSA0wtDQMuPk4rl0gKU,3651
69
70
  encommon/types/test/test_empty.py,sha256=eLsHuqq2YNABFkMLPbGbJMXeW2nyGNIxzUZv7YhPT5U,1017
71
+ encommon/types/test/test_funcs.py,sha256=dYVJgihEj1j3F-OxH0mYSIMoDwZbjvgMnvJKea8MZJc,664
70
72
  encommon/types/test/test_lists.py,sha256=uRdON1vnDT21TBl2prlO15SHIkN7YOApZzHS78R-Bvs,1139
71
73
  encommon/types/test/test_notate.py,sha256=KTOqlHUuS7ed80_h0n7TJNkAqoeULrkbiMH6sPw0lak,9520
72
74
  encommon/types/test/test_strings.py,sha256=oXusioFMdknHeBdwlP_GakDVS9Tf2YBndjonj22UfmM,1277
73
- encommon/utils/__init__.py,sha256=bBgh81wX_TwLgWkx0aBAyVLHNphrfcyQc1AF7-ziyNI,1027
75
+ encommon/utils/__init__.py,sha256=Wb-YFSoGlcAW36LsaQTc_IYiqDbb2d8m_ggej42LNeI,1077
74
76
  encommon/utils/common.py,sha256=-bjGJ2UJa-WTOsVYiuZcVj1gkyH5OlRdRkJtxPw8J6k,555
75
- encommon/utils/files.py,sha256=2uj10JfvKZHdLHNF992_LUvQ4rfMRCZGqJd7LrxKDnE,1458
77
+ encommon/utils/files.py,sha256=mP8p9mcYcK3dGqWcLvYxnYamqa0udmtTbXWVPo6i9W4,2208
76
78
  encommon/utils/match.py,sha256=XvmmMKQ1q8_21zzPGuVvaZf6XwHXPZn4IWIYBEqVCQM,2471
77
79
  encommon/utils/paths.py,sha256=u8-vTONG3QdnpkKfVpl19WssH95bCHg1gHlnRwzyAFM,3509
78
80
  encommon/utils/sample.py,sha256=wcT_me9L-U6atd8kEew4q_4B-iIn8vV1LhEDoVr-cFw,4834
79
81
  encommon/utils/stdout.py,sha256=nzXvdnvgjfdtLlAdIsOZurjGMfUX239gZZxPPQK9BIw,8595
80
82
  encommon/utils/test/__init__.py,sha256=PjrnBYT0efyvbaGeNx94dm3tP3EVHUHSVs-VGeLEv5g,218
81
- encommon/utils/test/test_files.py,sha256=-hdl4UOo-vH1H5gTL1r9Ib3P26DtWaD2YV32P08ykvc,679
83
+ encommon/utils/test/test_files.py,sha256=Nc7EteuZpnaFaF8OaqzEhuui9_SYHG1SK1OcoX9jEa8,1175
82
84
  encommon/utils/test/test_match.py,sha256=QagKpTFdRo23-Y55fSaJrSMpt5jIebScKbz0h8tivrI,1124
83
85
  encommon/utils/test/test_paths.py,sha256=4AzIhQyYFEWhRWHgOZCCzomQ3Zs3EVwRnDQDa6Nq1Mc,1942
84
86
  encommon/utils/test/test_sample.py,sha256=Qf-W0XbjTe5PfG87sdVizL2ymUPRTdX0qQtLGHaTgx8,3539
@@ -91,22 +93,22 @@ encommon/webkit/images/failure.svg,sha256=IqWLiORB_xdMKc1pPC9mRlp32htDwobysk5N2F
91
93
  encommon/webkit/images/information.svg,sha256=vbjvFBBspEfI6QBBQZ1hZoK5pJfIJeGNQhJqvytnHx0,483
92
94
  encommon/webkit/images/success.svg,sha256=TfjwM6Ajg10OSmNze70KFFzei3SryKI_TMVz8msGPk4,524
93
95
  encommon/webkit/images/warning.svg,sha256=IMpCPABJkm1jbR8zOc00Rl3WnHWsdreUCcAI7E7nZuY,372
94
- encommon/webkit/scripts/color.js,sha256=ExLYQbuC505O643gVXls0tfLTvMRo6n5MVyAok0Irp8,916
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=MiPAiI7flCEHfk0M7nF1Yyh0p2f7py62w41jbZKN88E,6092
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
96
+ encommon/webkit/scripts/color.js,sha256=b9rxwzRG-iKt5JL72l3ZroR7nJV3HXxX793uLPlN1qo,982
97
+ encommon/webkit/scripts/datagrid.js,sha256=7-fWEY32FeYECll7ckT5FgCgUlBEzZ4WggSrTQZRGko,1813
98
+ encommon/webkit/scripts/datetime.js,sha256=DgDq-K8EwUx9jD8FLRiW48IMwk07P441VTb8jAyOWio,2743
99
+ encommon/webkit/scripts/default.js,sha256=IkDqvaHuUFzk6IqODizVK7F2X9UqUyHW7UsP78cNsuE,7248
100
+ encommon/webkit/scripts/duration.js,sha256=6AOrOWMBGrr64QWvP6Rn7CoSthemzpj13sXU9dH6_AQ,2201
101
+ encommon/webkit/scripts/helpers.js,sha256=ciwRFEUbB15QssYOrOvDS2keXyb6MnoLPNj3yHe6Oeo,4499
102
+ encommon/webkit/scripts/image.js,sha256=sHScF2byCbPZvrg-w7Cc52Fy9t3P4yk-cYwO8yMBhdE,696
103
+ encommon/webkit/scripts/message.js,sha256=5sx18uofE4R4jgLwDbi43kWpeZgWVt3KHjtwbsksCsc,583
104
+ encommon/webkit/scripts/moderate.js,sha256=qNRp06nHrVST1XdTFk2XVBPdnAYUparMlC6X9h2cDcQ,1136
105
+ encommon/webkit/scripts/numeric.js,sha256=cwcVeSRULFbR56I44HPrQflmjGMY27hwmRuGEepoOKA,2983
106
+ encommon/webkit/scripts/statate.js,sha256=yY5j_NsLWLuEWf9XYjiXr-GIjVxrAgrgNMEmooBBpY0,633
107
+ encommon/webkit/scripts/tagues.js,sha256=xTT3cQdQ8DpO63WSJxNggPODm1wn147altwbLXdeUTA,668
106
108
  encommon/webkit/styles/color.css,sha256=34LegW5fuS1HLWAN9vv8EKnrwiMkzuHFLY2QQbQiah8,1433
107
109
  encommon/webkit/styles/datagrid.css,sha256=wlVlW4aFpJKzFCRft1T9Dl43xv6Vwz7gZnlHzYFz24c,1518
108
110
  encommon/webkit/styles/datetime.css,sha256=3mTiM9-FhgR5EOMYk8sMvR44yh_h9nZxsgcLoawOR_U,1120
109
- encommon/webkit/styles/default.css,sha256=NvJ7SIAuIDVhDDnkKe2J6LqWlrNAwjoZ2JMQE5rbNrY,4966
111
+ encommon/webkit/styles/default.css,sha256=BXnk6JmxxZMfEFf9ZRF9R14gw-e2Ww4TRjW3wakk5mo,4966
110
112
  encommon/webkit/styles/duration.css,sha256=iUTQJWIMf7xaAxXEsJ-_zRZzSPiebxO_mnHZGrymVTk,1012
111
113
  encommon/webkit/styles/image.css,sha256=Sh8Mg5CZAU43jN4jJJCFpZZV7UjOKaWp4sgff8S-VNU,1452
112
114
  encommon/webkit/styles/message.css,sha256=8IEEWkaUPjdd_h2jo8i0X-D9wYCo1SZ4UnmqYI4uZ5A,2560
@@ -129,8 +131,8 @@ encommon/webkit/test/test_moderate.py,sha256=KitKGBtwHOQm0pXXZA5nl9MwAi2pbHOsKhM
129
131
  encommon/webkit/test/test_numeric.py,sha256=9Jqiyo-Bh572QJSyd3gqRwYTifnqqzE7_cNCmLn0CG0,3531
130
132
  encommon/webkit/test/test_statate.py,sha256=4VvmyJhsK3TSK-hq3TzkzwPkXY-GPTU_7uJf-zG_y_s,1760
131
133
  encommon/webkit/test/test_tagues.py,sha256=LQWk6rSBoBxAu-YmUOU8uWNki5RBzk5lp0dbFpySg68,1431
132
- encommon-0.22.3.dist-info/LICENSE,sha256=otnXKCtMjPlbHs0wgZ_BWULrp3g_2dWQJ6icRk9nkgg,1071
133
- encommon-0.22.3.dist-info/METADATA,sha256=-_z1eC7mtGd0-t1ob5W25qrxpe0rJh5aCN4bIWPeNX4,4282
134
- encommon-0.22.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
135
- encommon-0.22.3.dist-info/top_level.txt,sha256=bP8q7-5tLDNm-3XPlqn_bDENfYNug5801H_xfz3BEAM,9
136
- encommon-0.22.3.dist-info/RECORD,,
134
+ encommon-0.22.5.dist-info/LICENSE,sha256=otnXKCtMjPlbHs0wgZ_BWULrp3g_2dWQJ6icRk9nkgg,1071
135
+ encommon-0.22.5.dist-info/METADATA,sha256=oq1HOf6hcMsIW3pXqcJUVApAN43UpT6Bh-1NKf-LpNY,4282
136
+ encommon-0.22.5.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
137
+ encommon-0.22.5.dist-info/top_level.txt,sha256=bP8q7-5tLDNm-3XPlqn_bDENfYNug5801H_xfz3BEAM,9
138
+ encommon-0.22.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5