FloriaKit 0.0.1__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.
FloriaKit/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from . import (
2
+ validator,
3
+ utils,
4
+ hints,
5
+ )
@@ -0,0 +1,16 @@
1
+ import typing as t
2
+
3
+ from . import (
4
+ common,
5
+ color,
6
+ size,
7
+ position,
8
+ vector,
9
+ exception,
10
+ )
11
+
12
+ from .common import *
13
+
14
+ from .size import *
15
+ from .position import *
16
+ from .vector import *
@@ -0,0 +1,31 @@
1
+ import typing as t
2
+
3
+ from .common import number
4
+
5
+
6
+ rgb = tuple[number, number, number]
7
+ rgba = tuple[number, number, number, number]
8
+
9
+
10
+ def get_rgba(color: rgb | rgba) -> rgba:
11
+ match len(color):
12
+ case 3:
13
+ return (*color, 255) # pyright: ignore[reportReturnType]
14
+
15
+ case 4:
16
+ return color # pyright: ignore[reportReturnType]
17
+
18
+ case _:
19
+ raise
20
+
21
+
22
+ def get_rgb(color: rgb | rgba) -> rgb:
23
+ match len(color):
24
+ case 3:
25
+ return color # pyright: ignore[reportReturnType]
26
+
27
+ case 4:
28
+ return color[:3]
29
+
30
+ case _:
31
+ raise
@@ -0,0 +1,3 @@
1
+ import typing as t
2
+
3
+ number = int | float
@@ -0,0 +1,19 @@
1
+ import typing as t
2
+
3
+
4
+ ex = Exception | str
5
+
6
+
7
+ if t.TYPE_CHECKING:
8
+
9
+ @t.overload
10
+ def get_exception(ex_: ex) -> Exception: ...
11
+
12
+ @t.overload
13
+ def get_exception(ex_: ex | None) -> Exception | None: ...
14
+
15
+
16
+ def get_exception(ex_: ex | None):
17
+ if ex_ is None:
18
+ return None
19
+ return ex_ if isinstance(ex_, Exception) else Exception(ex_)
@@ -0,0 +1,13 @@
1
+ import typing as t
2
+
3
+ from .common import number
4
+
5
+
6
+ pos2 = tuple[number, number]
7
+ pos2i = tuple[float, float]
8
+ pos2f = tuple[int, int]
9
+
10
+
11
+ pos3 = tuple[number, number, number]
12
+ pos3i = tuple[float, float, float]
13
+ pos3f = tuple[int, int, int]
@@ -0,0 +1,13 @@
1
+ import typing as t
2
+
3
+ from .common import number
4
+
5
+
6
+ size2 = tuple[number, number]
7
+ size2i = tuple[float, float]
8
+ size2f = tuple[int, int]
9
+
10
+
11
+ size3 = tuple[number, number, number]
12
+ size3i = tuple[float, float, float]
13
+ size3f = tuple[int, int, int]
@@ -0,0 +1,8 @@
1
+ import typing as t
2
+
3
+ from .common import number
4
+
5
+
6
+ vec2 = tuple[number, number]
7
+ vec3 = tuple[number, number, number]
8
+ vec4 = tuple[number, number, number, number]
@@ -0,0 +1,3 @@
1
+ from . import (
2
+ functions,
3
+ )
@@ -0,0 +1,9 @@
1
+ import typing as t
2
+
3
+
4
+ class SyncFunction[**P = [], R = t.Any](t.Protocol):
5
+ def __call__(self, *args: P.args, **kwds: P.kwargs) -> R: ...
6
+
7
+
8
+ class AsyncFunction[**P = [], R = t.Any](t.Protocol):
9
+ async def __call__(self, *args: P.args, **kwds: P.kwargs) -> R: ...
FloriaKit/py.typed ADDED
File without changes
@@ -0,0 +1,104 @@
1
+ import typing as t
2
+ import asyncio
3
+
4
+ from .calculated_value import CalculatedValue, gcv
5
+ from .interpolation_field import InterpolationField
6
+ from .stopwatch import Stopwatch, stopwatch
7
+ from .avg import Avg
8
+ from .flag import Flag
9
+
10
+ from .. import hints
11
+
12
+
13
+ if t.TYPE_CHECKING:
14
+
15
+ @t.overload
16
+ def coalapse[T](
17
+ *items: T | None,
18
+ exception: hints.exception.ex | None = None,
19
+ ) -> T: ...
20
+
21
+ @t.overload
22
+ def coalapse[T, TD](
23
+ *items: T | None,
24
+ default: TD,
25
+ ) -> T | TD: ...
26
+
27
+
28
+ def coalapse(
29
+ *items: t.Any | None,
30
+ **kw: t.Any,
31
+ ) -> t.Any:
32
+ for item in items:
33
+ if item is not None:
34
+ return item
35
+
36
+ if 'default' in kw:
37
+ return kw['default']
38
+
39
+ if (ex := hints.exception.get_exception(kw.get('exception'))) is not None:
40
+ raise ex
41
+
42
+ raise ValueError()
43
+
44
+
45
+ if t.TYPE_CHECKING:
46
+
47
+ @t.overload
48
+ def coalapse_lazy[T](
49
+ *items: CalculatedValue[T | None] | T | None,
50
+ exception: hints.exception.ex | None = None,
51
+ ) -> T: ...
52
+
53
+ @t.overload
54
+ def coalapse_lazy[T, TD](
55
+ *items: CalculatedValue[T | None] | T | None,
56
+ default: TD,
57
+ ) -> T | TD: ...
58
+
59
+
60
+ def coalapse_lazy(
61
+ *items: CalculatedValue[t.Any] | t.Any | None,
62
+ **kw: t.Any,
63
+ ) -> t.Any:
64
+ for item in items:
65
+ if (value := gcv(item)) is not None:
66
+ return value
67
+
68
+ if 'default' in kw:
69
+ return kw['default']
70
+
71
+ if (ex := hints.exception.get_exception(kw.get('exception'))) is not None:
72
+ raise ex
73
+
74
+ raise ValueError()
75
+
76
+
77
+ async def invoke[**P, R](
78
+ func: t.Callable[P, R | t.Coroutine[R, t.Any, t.Any]],
79
+ *args: P.args,
80
+ **kwargs: P.kwargs,
81
+ ) -> R:
82
+ if asyncio.iscoroutine(result := func(*args, **kwargs)):
83
+ return await result
84
+ return result
85
+
86
+
87
+ def partition[T](
88
+ predicate: t.Callable[[T], bool] | None,
89
+ iterable: t.Iterable[T],
90
+ ) -> tuple[list[T], list[T]]:
91
+ '''
92
+ return: trues, falses
93
+ '''
94
+
95
+ trues: list[T] = []
96
+ falses: list[T] = []
97
+
98
+ for item in iterable:
99
+ if item is not None if predicate is None else predicate(item):
100
+ trues.append(item)
101
+ else:
102
+ falses.append(item)
103
+
104
+ return trues, falses
FloriaKit/utils/avg.py ADDED
@@ -0,0 +1,74 @@
1
+ import typing as t
2
+
3
+
4
+ class Avg:
5
+ """Accumulator for incremental average calculation.
6
+
7
+ Efficiently computes arithmetic mean without storing all values.
8
+ Suitable for real-time metrics tracking.
9
+
10
+ For example::
11
+
12
+ avg = Avg()
13
+
14
+ avg.add(60)
15
+ avg.add(30)
16
+
17
+ avg.value # 45
18
+ """
19
+
20
+ __slots__ = ('_sum', '_count')
21
+
22
+ def __init__(self) -> None:
23
+ """Initialize Avg instance"""
24
+ super().__init__()
25
+
26
+ self._sum: float = 0
27
+ self._count: int = 0
28
+
29
+ def add(self, value: float):
30
+ """Add new value to the accumulator.
31
+
32
+ Args:
33
+ value: Numeric value to include in average calculation
34
+ """
35
+ self._sum += value
36
+ self._count += 1
37
+
38
+ def extend(self, values: t.Iterable[float]):
39
+ """Add multiple values efficiently.
40
+
41
+ Args:
42
+ values: Iterable of numeric values
43
+ """
44
+ for value in values:
45
+ self.add(value)
46
+
47
+ def clear(self):
48
+ """Reset accumulator state."""
49
+ self._sum = self._count = 0
50
+
51
+ @property
52
+ def count(self) -> int:
53
+ """Current number of accumulated values."""
54
+ return self._count
55
+
56
+ @property
57
+ def total(self) -> float:
58
+ """Current accumulated sum of values."""
59
+ return self._sum
60
+
61
+ @property
62
+ def value(self) -> float:
63
+ """Current arithmetic mean.
64
+
65
+ Returns 0.0 when no values accumulated to avoid division errors.
66
+ """
67
+ return self._sum / self._count if self._count > 0 else 0
68
+
69
+ def __len__(self) -> int:
70
+ return self._count
71
+
72
+ def __iadd__(self, value: float) -> 'Avg':
73
+ self.add(value)
74
+ return self
@@ -0,0 +1,16 @@
1
+ import typing as t
2
+
3
+
4
+ @t.runtime_checkable
5
+ class CalculatedValue[R, **P = []](t.Protocol):
6
+ def __call__(self, *args: P.args, **kwds: P.kwargs) -> R: ...
7
+
8
+
9
+ def gcv[T, **P = []](
10
+ value: CalculatedValue[T, P] | T,
11
+ *args: P.args,
12
+ **kwargs: P.kwargs,
13
+ ) -> T:
14
+ if isinstance(value, CalculatedValue):
15
+ return value(*args, **kwargs) # pyright: ignore[reportUnknownVariableType]
16
+ return value
@@ -0,0 +1,50 @@
1
+ import typing as t
2
+
3
+
4
+ class Flag:
5
+ __slots__ = ('_depth',)
6
+
7
+ """
8
+ Управляемый флаг с поддержкой контекстного менеджера.
9
+
10
+ Предоставляет механизм временного установления флага с
11
+ автоматическим сбросом при выходе из контекста.
12
+
13
+ Пример:
14
+
15
+ ```python
16
+
17
+ flag = Flag()
18
+
19
+ ...
20
+
21
+ with flag:
22
+ # Флаг установлен в True
23
+ ...
24
+
25
+ # Флаг автоматически сброшен в False
26
+
27
+ ...
28
+
29
+ if flag:
30
+ raise Exception(...)
31
+ ```
32
+ """
33
+
34
+ def __init__(self):
35
+ self._depth: int = 0
36
+
37
+ def __enter__(self, *args: t.Any, **kwargs: t.Any):
38
+ self._depth += 1
39
+
40
+ def __exit__(self, *args: t.Any, **kwargs: t.Any):
41
+ self._depth -= 1
42
+
43
+ @property
44
+ def value(self) -> bool:
45
+ """Текущее состояние флага"""
46
+ return self._depth > 0
47
+
48
+ def __bool__(self) -> bool:
49
+ """Возвращает текущее состояние флага для использования в условиях"""
50
+ return self.value
@@ -0,0 +1,80 @@
1
+ import typing as t
2
+ import time
3
+
4
+ from .calculated_value import CalculatedValue, gcv
5
+
6
+
7
+ class InterpolationField[T = t.Any]:
8
+ __slots__ = (
9
+ '_interpolation_func',
10
+ '_delay',
11
+ '_value',
12
+ '_next',
13
+ '__weakref__',
14
+ )
15
+
16
+ def __init__(
17
+ self,
18
+ interpolation_func: t.Callable[[T, T, float], T],
19
+ delay: CalculatedValue[float] | float,
20
+ default: T = None,
21
+ ):
22
+ self._interpolation_func = interpolation_func
23
+ self._delay = delay
24
+
25
+ self._value: T = default
26
+ self._next: tuple[T, float] | None = None
27
+ '''next_value, next_time'''
28
+
29
+ def get_value(self) -> T:
30
+ if self._next is None:
31
+ return self._value
32
+
33
+ next_value, next_time = self._next
34
+
35
+ if time.perf_counter() >= next_time:
36
+ self._value = next_value
37
+ self._next = None
38
+ return self._value
39
+
40
+ return self._interpolation_func(
41
+ self._value,
42
+ next_value,
43
+ self.progress,
44
+ )
45
+
46
+ def set_value(self, value: T, flash: bool = False) -> t.Self:
47
+ if flash:
48
+ self._next = None
49
+ self._value = value
50
+
51
+ else:
52
+ if self._next is not None:
53
+ self._value = self._next[0]
54
+
55
+ self._next = (
56
+ value,
57
+ time.perf_counter() + self.delay,
58
+ )
59
+
60
+ return self
61
+
62
+ @property
63
+ def progress(self) -> float:
64
+ if self._next is None:
65
+ return 1
66
+
67
+ _, next_time = self._next
68
+
69
+ if (cur_time := time.perf_counter()) >= next_time:
70
+ return 1
71
+
72
+ return min(1, max(0, 1 - (next_time - cur_time) / self.delay))
73
+
74
+ @property
75
+ def delay(self):
76
+ return gcv(self._delay)
77
+
78
+ @property
79
+ def is_interpolated(self):
80
+ return self._next is not None
@@ -0,0 +1,272 @@
1
+ import typing as t
2
+ import types as ts
3
+ from contextlib import contextmanager
4
+ from time import perf_counter
5
+ from collections import deque
6
+ import functools
7
+ import inspect
8
+
9
+
10
+ if t.TYPE_CHECKING:
11
+ from .. import protocols
12
+
13
+
14
+ class Stopwatch:
15
+ """Таймер для измерения времени выполнения.
16
+
17
+ Пример:
18
+
19
+ ```python
20
+ stopwatch = Stopwatch(5)
21
+
22
+ with stopwatch:
23
+ ...
24
+ ```
25
+ """
26
+
27
+ __slots__ = (
28
+ '_start_time',
29
+ '_last_value',
30
+ '_samples',
31
+ )
32
+
33
+ def __init__(self, max_samples: int = 10):
34
+ """Инициализация Stopwatch.
35
+
36
+ Args:
37
+ max_samples (int, optional): Максимальное количество хранимых замеров. По умолчанию 10.
38
+ """
39
+ self._start_time: float | None = None
40
+
41
+ self._last_value: float | None = None
42
+ self._samples: deque[float] = deque(maxlen=max_samples)
43
+
44
+ def __enter__(self, *args: t.Any, **kwargs: t.Any):
45
+ self.start()
46
+ return self
47
+
48
+ def __exit__(self, *args: t.Any, **kwargs: t.Any):
49
+ self.stop()
50
+
51
+ @contextmanager
52
+ def bind(self):
53
+ """Альтернативный способ измерения через контекстный менеджер."""
54
+ try:
55
+ self.start()
56
+
57
+ yield self
58
+
59
+ finally:
60
+ self.stop()
61
+
62
+ def start(self) -> t.Self:
63
+ """Запуск таймера.
64
+
65
+ Raises:
66
+ RuntimeError: Если таймер уже запущен.
67
+ """
68
+ if self._start_time is not None:
69
+ raise RuntimeError('Stopwatch is already running')
70
+ self._start_time = perf_counter()
71
+
72
+ return self
73
+
74
+ def stop(self) -> float:
75
+ """
76
+ Остановка таймера и сохранение результата.
77
+
78
+ Returns:
79
+ float: Прошедшее время в секундах.
80
+
81
+ Raises:
82
+ RuntimeError: Если таймер не запущен.
83
+ """
84
+ if self._start_time is None:
85
+ raise RuntimeError("Stopwatch is not running")
86
+
87
+ self._last_value = perf_counter() - self._start_time
88
+ self._samples.append(self._last_value)
89
+
90
+ self._start_time = None
91
+ return self._last_value
92
+
93
+ def lap(self) -> float:
94
+ """
95
+ Получить промежуточное время без остановки таймера.
96
+
97
+ Returns:
98
+ float: Время с начала измерения.
99
+
100
+ Raises:
101
+ RuntimeError: Если таймер не запущен.
102
+ """
103
+ if self._start_time is None:
104
+ raise RuntimeError("Stopwatch is not running")
105
+
106
+ return perf_counter() - self._start_time
107
+
108
+ def reset(self) -> t.Self:
109
+ """Сброс всех замеров и текущего значения."""
110
+ if self._start_time is not None:
111
+ raise RuntimeError("Stopwatch is running")
112
+
113
+ self._samples.clear()
114
+ self._last_value = None
115
+
116
+ return self
117
+
118
+ @property
119
+ def is_running(self) -> bool:
120
+ """Проверка, запущен ли таймер."""
121
+ return self._start_time is not None
122
+
123
+ @property
124
+ def last(self) -> float:
125
+ """Последнее зафиксированное время."""
126
+ if self._last_value is None:
127
+ raise
128
+ return self._last_value
129
+
130
+ @property
131
+ def min(self) -> float:
132
+ """Минимальное значение из всех сохранённых замеров."""
133
+ return min(*self._samples) if self.count > 0 else 0
134
+
135
+ @property
136
+ def max(self) -> float:
137
+ """Максимальное значение из всех сохранённых замеров."""
138
+ return max(*self._samples) if self.count > 0 else 0
139
+
140
+ @property
141
+ def avg(self) -> float:
142
+ """Среднее значение всех сохранённых замеров."""
143
+ if (count := len(self._samples)) > 0:
144
+ return sum(self._samples) / count
145
+ return 0
146
+
147
+ @property
148
+ def total(self) -> float:
149
+ """Сумма всех сохранённых замеров."""
150
+ return sum(self._samples)
151
+
152
+ @property
153
+ def count(self) -> int:
154
+ """Количество сохранённых замеров."""
155
+ return len(self._samples)
156
+
157
+ def __repr__(self) -> str:
158
+ avg = round(self.avg, 6) if self.count > 0 else None
159
+ last = round(self.last, 6) if self._last_value is not None else None
160
+ return f'Stopwatch<{id(self)}>(avg: {avg}(~{None if avg is None else round(1 / avg, 1)}), last: {last}(~{None if last is None else round(1 / last, 1)}))'
161
+
162
+ def __str__(self) -> str:
163
+ return self.__repr__()
164
+
165
+
166
+ class _StopwatchDescriptor:
167
+ """Дескриптор для привязки stopwatch к экземплярам классов."""
168
+
169
+ def __init__(
170
+ self,
171
+ func: protocols.functions.SyncFunction[...],
172
+ stopwatch: Stopwatch | None = None,
173
+ ):
174
+ self.func = func
175
+ self.stopwatch = stopwatch or Stopwatch()
176
+
177
+ functools.update_wrapper(self, func)
178
+
179
+ def __get__(self, obj: t.Any, objtype: t.Type[t.Any] | None = None) -> t.Any:
180
+ if obj is None:
181
+ return self
182
+
183
+ @functools.wraps(self.func)
184
+ def wrapper(*args: t.Any, **kwargs: t.Any) -> t.Any:
185
+ with self.stopwatch:
186
+ return self.func(obj, *args, **kwargs)
187
+
188
+ wrapper.__stopwatch__ = self.stopwatch # type: ignore
189
+ return wrapper
190
+
191
+ def __call__(self, *args: t.Any, **kwargs: t.Any) -> t.Any:
192
+ with self.stopwatch:
193
+ return self.func(*args, **kwargs)
194
+
195
+
196
+ @t.overload
197
+ def stopwatch[TFunc: protocols.functions.SyncFunction[...]](
198
+ func: TFunc,
199
+ /,
200
+ ) -> TFunc: ...
201
+
202
+
203
+ @t.overload
204
+ def stopwatch[TFunc: protocols.functions.SyncFunction[...]](
205
+ *,
206
+ instance: t.Optional[Stopwatch] = None,
207
+ ) -> t.Callable[[TFunc], TFunc]: ...
208
+
209
+
210
+ def stopwatch(
211
+ func: protocols.functions.SyncFunction[...] | None = None,
212
+ *,
213
+ instance: Stopwatch | None = None,
214
+ ) -> t.Any:
215
+ """Декоратор для измерения времени выполнения функций и методов.
216
+
217
+ Args:
218
+ func (TFunc, optional): Функция для декорирования.
219
+ instance (Stopwatch, optional): Существующий экземпляр Stopwatch.
220
+
221
+ Returns:
222
+ Декорированную функцию или декоратор.
223
+
224
+ Examples:
225
+
226
+ Пример:
227
+
228
+ ```python
229
+ # Для функции
230
+ @stopwatch
231
+ def my_function():
232
+ ...
233
+
234
+ ```
235
+
236
+ Пример с общим stopwatch:
237
+
238
+ ```python
239
+ shared_sw = Stopwatch()
240
+
241
+ @stopwatch(instance=shared_sw)
242
+ def shared_function():
243
+ ...
244
+ ```
245
+
246
+ Пример с методом класса:
247
+
248
+ ```python
249
+ # Каждый экземпляр имеет свой stopwatch
250
+ class MyClass:
251
+ @stopwatch
252
+ def my_method(self):
253
+ ...
254
+ ```
255
+
256
+ """
257
+
258
+ def decorator[TFunc: protocols.functions.SyncFunction[...]](func: TFunc) -> TFunc:
259
+ if inspect.ismethod(func) or (
260
+ hasattr(func, '__self__') and getattr(func, '__self__', None) is not None
261
+ ):
262
+ wrapper = _StopwatchDescriptor(func, instance)
263
+ return t.cast(TFunc, wrapper)
264
+
265
+ else:
266
+ descriptor = _StopwatchDescriptor(func, instance)
267
+ return t.cast(TFunc, descriptor)
268
+
269
+ if func is None:
270
+ return decorator
271
+ else:
272
+ return decorator(func)
@@ -0,0 +1,32 @@
1
+ import typing as t
2
+
3
+ from .. import hints
4
+
5
+
6
+ def raiser(ex: hints.exception.ex):
7
+ raise hints.exception.get_exception(ex)
8
+
9
+
10
+ def not_none[T](
11
+ value: t.Optional[T],
12
+ ex: hints.exception.ex = 'Is not none',
13
+ ) -> T:
14
+ return value if value is not None else raiser(ex)
15
+
16
+
17
+ def is_instance[T](
18
+ value: t.Any,
19
+ type_: t.Type[T],
20
+ ex: hints.exception.ex = 'Is not instance',
21
+ ) -> T:
22
+ return value if isinstance(value, type_) else raiser(ex)
23
+
24
+
25
+ def is_instance_or_default[T, TD](
26
+ value: t.Any,
27
+ type: t.Type[T],
28
+ default: TD = None,
29
+ ) -> T | TD:
30
+ if not isinstance(value, type):
31
+ return default
32
+ return value
@@ -0,0 +1,234 @@
1
+ Metadata-Version: 2.4
2
+ Name: FloriaKit
3
+ Version: 0.0.1
4
+ Summary: FloriaKit — инструменты для аннотаций, валидации, протоколов и утилит.
5
+ Author-email: FloriaProduction <FloriaProduction@yandex.ru>
6
+ License: Apache License
7
+ Version 2.0, January 2004
8
+ http://www.apache.org/licenses/
9
+
10
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
+
12
+ 1. Definitions.
13
+
14
+ "License" shall mean the terms and conditions for use, reproduction,
15
+ and distribution as defined by Sections 1 through 9 of this document.
16
+
17
+ "Licensor" shall mean the copyright owner or entity authorized by
18
+ the copyright owner that is granting the License.
19
+
20
+ "Legal Entity" shall mean the union of the acting entity and all
21
+ other entities that control, are controlled by, or are under common
22
+ control with that entity. For the purposes of this definition,
23
+ "control" means (i) the power, direct or indirect, to cause the
24
+ direction or management of such entity, whether by contract or
25
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
+ outstanding shares, or (iii) beneficial ownership of such entity.
27
+
28
+ "You" (or "Your") shall mean an individual or Legal Entity
29
+ exercising permissions granted by this License.
30
+
31
+ "Source" form shall mean the preferred form for making modifications,
32
+ including but not limited to software source code, documentation
33
+ source, and configuration files.
34
+
35
+ "Object" form shall mean any form resulting from mechanical
36
+ transformation or translation of a Source form, including but
37
+ not limited to compiled object code, generated documentation,
38
+ and conversions to other media types.
39
+
40
+ "Work" shall mean the work of authorship, whether in Source or
41
+ Object form, made available under the License, as indicated by a
42
+ copyright notice that is included in or attached to the work
43
+ (an example is provided in the Appendix below).
44
+
45
+ "Derivative Works" shall mean any work, whether in Source or Object
46
+ form, that is based on (or derived from) the Work and for which the
47
+ editorial revisions, annotations, elaborations, or other modifications
48
+ represent, as a whole, an original work of authorship. For the purposes
49
+ of this License, Derivative Works shall not include works that remain
50
+ separable from, or merely link (or bind by name) to the interfaces of,
51
+ the Work and Derivative Works thereof.
52
+
53
+ "Contribution" shall mean any work of authorship, including
54
+ the original version of the Work and any modifications or additions
55
+ to that Work or Derivative Works thereof, that is intentionally
56
+ submitted to Licensor for inclusion in the Work by the copyright owner
57
+ or by an individual or Legal Entity authorized to submit on behalf of
58
+ the copyright owner. For the purposes of this definition, "submitted"
59
+ means any form of electronic, verbal, or written communication sent
60
+ to the Licensor or its representatives, including but not limited to
61
+ communication on electronic mailing lists, source code control systems,
62
+ and issue tracking systems that are managed by, or on behalf of, the
63
+ Licensor for the purpose of discussing and improving the Work, but
64
+ excluding communication that is conspicuously marked or otherwise
65
+ designated in writing by the copyright owner as "Not a Contribution."
66
+
67
+ "Contributor" shall mean Licensor and any individual or Legal Entity
68
+ on behalf of whom a Contribution has been received by Licensor and
69
+ subsequently incorporated within the Work.
70
+
71
+ 2. Grant of Copyright License. Subject to the terms and conditions of
72
+ this License, each Contributor hereby grants to You a perpetual,
73
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
+ copyright license to reproduce, prepare Derivative Works of,
75
+ publicly display, publicly perform, sublicense, and distribute the
76
+ Work and such Derivative Works in Source or Object form.
77
+
78
+ 3. Grant of Patent License. Subject to the terms and conditions of
79
+ this License, each Contributor hereby grants to You a perpetual,
80
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
+ (except as stated in this section) patent license to make, have made,
82
+ use, offer to sell, sell, import, and otherwise transfer the Work,
83
+ where such license applies only to those patent claims licensable
84
+ by such Contributor that are necessarily infringed by their
85
+ Contribution(s) alone or by combination of their Contribution(s)
86
+ with the Work to which such Contribution(s) was submitted. If You
87
+ institute patent litigation against any entity (including a
88
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
89
+ or a Contribution incorporated within the Work constitutes direct
90
+ or contributory patent infringement, then any patent licenses
91
+ granted to You under this License for that Work shall terminate
92
+ as of the date such litigation is filed.
93
+
94
+ 4. Redistribution. You may reproduce and distribute copies of the
95
+ Work or Derivative Works thereof in any medium, with or without
96
+ modifications, and in Source or Object form, provided that You
97
+ meet the following conditions:
98
+
99
+ (a) You must give any other recipients of the Work or
100
+ Derivative Works a copy of this License; and
101
+
102
+ (b) You must cause any modified files to carry prominent notices
103
+ stating that You changed the files; and
104
+
105
+ (c) You must retain, in the Source form of any Derivative Works
106
+ that You distribute, all copyright, patent, trademark, and
107
+ attribution notices from the Source form of the Work,
108
+ excluding those notices that do not pertain to any part of
109
+ the Derivative Works; and
110
+
111
+ (d) If the Work includes a "NOTICE" text file as part of its
112
+ distribution, then any Derivative Works that You distribute must
113
+ include a readable copy of the attribution notices contained
114
+ within such NOTICE file, excluding those notices that do not
115
+ pertain to any part of the Derivative Works, in at least one
116
+ of the following places: within a NOTICE text file distributed
117
+ as part of the Derivative Works; within the Source form or
118
+ documentation, if provided along with the Derivative Works; or,
119
+ within a display generated by the Derivative Works, if and
120
+ wherever such third-party notices normally appear. The contents
121
+ of the NOTICE file are for informational purposes only and
122
+ do not modify the License. You may add Your own attribution
123
+ notices within Derivative Works that You distribute, alongside
124
+ or as an addendum to the NOTICE text from the Work, provided
125
+ that such additional attribution notices cannot be construed
126
+ as modifying the License.
127
+
128
+ You may add Your own copyright statement to Your modifications and
129
+ may provide additional or different license terms and conditions
130
+ for use, reproduction, or distribution of Your modifications, or
131
+ for any such Derivative Works as a whole, provided Your use,
132
+ reproduction, and distribution of the Work otherwise complies with
133
+ the conditions stated in this License.
134
+
135
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
136
+ any Contribution intentionally submitted for inclusion in the Work
137
+ by You to the Licensor shall be under the terms and conditions of
138
+ this License, without any additional terms or conditions.
139
+ Notwithstanding the above, nothing herein shall supersede or modify
140
+ the terms of any separate license agreement you may have executed
141
+ with Licensor regarding such Contributions.
142
+
143
+ 6. Trademarks. This License does not grant permission to use the trade
144
+ names, trademarks, service marks, or product names of the Licensor,
145
+ except as required for reasonable and customary use in describing the
146
+ origin of the Work and reproducing the content of the NOTICE file.
147
+
148
+ 7. Disclaimer of Warranty. Unless required by applicable law or
149
+ agreed to in writing, Licensor provides the Work (and each
150
+ Contributor provides its Contributions) on an "AS IS" BASIS,
151
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
+ implied, including, without limitation, any warranties or conditions
153
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
+ PARTICULAR PURPOSE. You are solely responsible for determining the
155
+ appropriateness of using or redistributing the Work and assume any
156
+ risks associated with Your exercise of permissions under this License.
157
+
158
+ 8. Limitation of Liability. In no event and under no legal theory,
159
+ whether in tort (including negligence), contract, or otherwise,
160
+ unless required by applicable law (such as deliberate and grossly
161
+ negligent acts) or agreed to in writing, shall any Contributor be
162
+ liable to You for damages, including any direct, indirect, special,
163
+ incidental, or consequential damages of any character arising as a
164
+ result of this License or out of the use or inability to use the
165
+ Work (including but not limited to damages for loss of goodwill,
166
+ work stoppage, computer failure or malfunction, or any and all
167
+ other commercial damages or losses), even if such Contributor
168
+ has been advised of the possibility of such damages.
169
+
170
+ 9. Accepting Warranty or Additional Liability. While redistributing
171
+ the Work or Derivative Works thereof, You may choose to offer,
172
+ and charge a fee for, acceptance of support, warranty, indemnity,
173
+ or other liability obligations and/or rights consistent with this
174
+ License. However, in accepting such obligations, You may act only
175
+ on Your own behalf and on Your sole responsibility, not on behalf
176
+ of any other Contributor, and only if You agree to indemnify,
177
+ defend, and hold each Contributor harmless for any liability
178
+ incurred by, or claims asserted against, such Contributor by reason
179
+ of your accepting any such warranty or additional liability.
180
+
181
+ END OF TERMS AND CONDITIONS
182
+
183
+ APPENDIX: How to apply the Apache License to your work.
184
+
185
+ To apply the Apache License to your work, attach the following
186
+ boilerplate notice, with the fields enclosed by brackets "[]"
187
+ replaced with your own identifying information. (Don't include
188
+ the brackets!) The text should be enclosed in the appropriate
189
+ comment syntax for the file format. We also recommend that a
190
+ file or class name and description of purpose be included on the
191
+ same "printed page" as the copyright notice for easier
192
+ identification within third-party archives.
193
+
194
+ Copyright [yyyy] [name of copyright owner]
195
+
196
+ Licensed under the Apache License, Version 2.0 (the "License");
197
+ you may not use this file except in compliance with the License.
198
+ You may obtain a copy of the License at
199
+
200
+ http://www.apache.org/licenses/LICENSE-2.0
201
+
202
+ Unless required by applicable law or agreed to in writing, software
203
+ distributed under the License is distributed on an "AS IS" BASIS,
204
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
+ See the License for the specific language governing permissions and
206
+ limitations under the License.
207
+
208
+ Project-URL: Repository, https://github.com/FloriaProduction/FloriaKit
209
+ Keywords: kit
210
+ Classifier: Intended Audience :: Developers
211
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
212
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
213
+ Classifier: License :: OSI Approved :: Apache Software License
214
+ Classifier: Programming Language :: Python :: 3
215
+ Classifier: Programming Language :: Python :: 3.14
216
+ Classifier: Typing :: Typed
217
+ Requires-Python: <3.15,>=3.14
218
+ Description-Content-Type: text/markdown
219
+ License-File: LICENSE
220
+ Dynamic: license-file
221
+
222
+ # FloriaKit
223
+
224
+ [![PyPI version](https://img.shields.io/pypi/v/FloriaKit.svg)](https://pypi.org/project/FloriaKit/)
225
+ [![Python Version](https://img.shields.io/pypi/pyversions/FloriaKit.svg)](https://pypi.org/project/FloriaKit/)
226
+ [![License](https://img.shields.io/pypi/l/FloriaKit.svg)](https://github.com/FloriaProduction/FloriaKit/blob/main/LICENSE)
227
+
228
+ Инструменты для аннотаций, валидации, протоколов и утилит.
229
+
230
+ ## Установка
231
+
232
+ ```bash
233
+ pip install FloriaKit
234
+ ```
@@ -0,0 +1,23 @@
1
+ FloriaKit/__init__.py,sha256=W2ReRKGf2IFeXWAaNCN499eQh5rbOxrdBTH1_E0gB2A,60
2
+ FloriaKit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ FloriaKit/hints/__init__.py,sha256=6oomzw9DlzI7_MdyrrbrM1WAboFjELWsXTvhMZx28iQ,218
4
+ FloriaKit/hints/color.py,sha256=huwqxOK40bcqC1FFj-yF7fXH-MKJrR3nxxni9tZlTVE,648
5
+ FloriaKit/hints/common.py,sha256=VqZNkqgagljPIEce5CLreKcwOVlXtxRI9t5arCzluXI,44
6
+ FloriaKit/hints/exception.py,sha256=NblFnvqrheMKVpRpaPddUDs3b725jwyJlWEyrqB07ZI,371
7
+ FloriaKit/hints/position.py,sha256=comKA_S1ew_iGFN5HvLHyE8gW4eEE5gG6cUJc5U9bV0,246
8
+ FloriaKit/hints/size.py,sha256=RHZztIcZFbLEMjyTFQUtrApq-0gU6KsenI0Wq5rdcCQ,252
9
+ FloriaKit/hints/vector.py,sha256=Wuz_Zm9iCt7LKdnWZHBWE5lKIBHRogkcjOnycREjpNg,168
10
+ FloriaKit/protocols/__init__.py,sha256=mEvBehaWTKY3aJiev9mjEOlcMK7-jYRgF4aJced7Pg0,36
11
+ FloriaKit/protocols/functions.py,sha256=d_fKbl140F7lTkXMWCEp7tQgqrMz_DM4IlZRDgfTEg4,277
12
+ FloriaKit/utils/__init__.py,sha256=hk9l-kABciU0k_MYuf_oSJe6zC9nXhggHIZbBAA6WDM,2301
13
+ FloriaKit/utils/avg.py,sha256=AoFTxd_zFnTgW0zXb_r7Pbhq5s47CUBrJsK10S9QzjY,1754
14
+ FloriaKit/utils/calculated_value.py,sha256=-h5yeg2FqkjuPkBCPLi1p2oM0bOUzgFJWbKgE0VqSKk,429
15
+ FloriaKit/utils/flag.py,sha256=aLbiCMMl5MuLyidkkiiPRfTO7mt7hi8ReSrUbgg3mks,1280
16
+ FloriaKit/utils/interpolation_field.py,sha256=cjNXgmLkW9vebA-Eb28XL5mYZ6Q1CZc8N6uIXeq17ow,1937
17
+ FloriaKit/utils/stopwatch.py,sha256=Dk3HdhXz_nBZhMpCleu0RleTr4ZqR9PGIf3tBiVgrgY,7995
18
+ FloriaKit/validator/__init__.py,sha256=0-lRHLi1KgM6FFF4i42pZXU9UcQ5l05CNuTE46fNuiE,674
19
+ floriakit-0.0.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
20
+ floriakit-0.0.1.dist-info/METADATA,sha256=9LtuV8S0b0tX2kK1xkQrBtJhFui0GCLfUIhDyU6fqmY,14555
21
+ floriakit-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
22
+ floriakit-0.0.1.dist-info/top_level.txt,sha256=JBmsd8azF_q8KFXHB2o_Sta2Ku8Zlii2L9N2ngFOyHM,10
23
+ floriakit-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ FloriaKit