moka-py 0.3.0__cp314-cp314-manylinux_2_5_i686.manylinux1_i686.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.
moka_py/__init__.py ADDED
@@ -0,0 +1,71 @@
1
+ import asyncio as _asyncio
2
+ import inspect as _inspect
3
+ from functools import _make_key
4
+ from functools import wraps as _wraps
5
+ from typing import Any as _Any
6
+
7
+ from .moka_py import Moka
8
+ from .moka_py import get_version as _get_version
9
+
10
+ __all__ = ["VERSION", "Moka", "cached"]
11
+
12
+ VERSION = _get_version()
13
+
14
+
15
+ def cached(
16
+ maxsize=128,
17
+ typed=False,
18
+ *,
19
+ ttl=None,
20
+ tti=None,
21
+ wait_concurrent=False,
22
+ policy="tiny_lfu",
23
+ ):
24
+ """Cache decorator for sync and async functions with TTL/TTI and optional concurrent-waiting.
25
+
26
+ - For sync functions: returns cached value if present, otherwise computes and stores it.
27
+ - For async functions: returns an awaitable; with wait_concurrent=True a single shared task is created per key
28
+ so concurrent awaiters share the same result or exception.
29
+ """
30
+ cache = Moka(maxsize, ttl=ttl, tti=tti, policy=policy)
31
+ empty = object()
32
+
33
+ def dec(fn):
34
+ if _inspect.iscoroutinefunction(fn):
35
+
36
+ @_wraps(fn)
37
+ async def inner(*args, **kwargs):
38
+ key = _make_key(args, kwargs, typed)
39
+ if wait_concurrent:
40
+ # Store a shared Task in cache while computation is in-flight
41
+ def init() -> _Any:
42
+ return _asyncio.create_task(fn(*args, **kwargs))
43
+
44
+ task = cache.get_with(key, init)
45
+ return await task
46
+ else:
47
+ maybe_value = cache.get(key, empty)
48
+ if maybe_value is not empty:
49
+ return maybe_value
50
+ value = await fn(*args, **kwargs)
51
+ cache.set(key, value)
52
+ return value
53
+ else:
54
+
55
+ @_wraps(fn)
56
+ def inner(*args, **kwargs):
57
+ key = _make_key(args, kwargs, typed)
58
+ if wait_concurrent:
59
+ return cache.get_with(key, lambda: fn(*args, **kwargs))
60
+ else:
61
+ maybe_value = cache.get(key, empty)
62
+ if maybe_value is not empty:
63
+ return maybe_value
64
+ value = fn(*args, **kwargs)
65
+ cache.set(key, value)
66
+ return value
67
+
68
+ inner.cache_clear = cache.clear
69
+ return inner
70
+
71
+ return dec
moka_py/__init__.pyi ADDED
@@ -0,0 +1,67 @@
1
+ from collections.abc import Callable, Hashable
2
+ from typing import Any, Generic, Literal, TypeVar, overload
3
+
4
+ K = TypeVar("K", bound=Hashable)
5
+ V = TypeVar("V")
6
+ D = TypeVar("D")
7
+ Fn = TypeVar("Fn", bound=Callable[..., Any])
8
+ Cause = Literal["explicit", "size", "expired", "replaced"]
9
+ Policy = Literal["tiny_lfu", "lru"]
10
+
11
+ class Moka(Generic[K, V]):
12
+ def __init__(
13
+ self,
14
+ capacity: int,
15
+ ttl: int | float | None = None,
16
+ tti: int | float | None = None,
17
+ eviction_listener: Callable[[K, V, Cause], None] | None = None,
18
+ policy: Policy = "tiny_lfu",
19
+ ): ...
20
+ def set(
21
+ self,
22
+ key: K,
23
+ value: V,
24
+ ttl: int | float | None = None,
25
+ tti: int | float | None = None,
26
+ ) -> None: ...
27
+ @overload
28
+ def get(self, key: K, default: D) -> V | D: ...
29
+ @overload
30
+ def get(self, key: K, default: D | None = None) -> V | D | None: ...
31
+ def get_with(
32
+ self,
33
+ key: K,
34
+ initializer: Callable[[], V],
35
+ ttl: int | float | None = None,
36
+ tti: int | float | None = None,
37
+ ) -> V:
38
+ """Lookup or initialize a value for the key.
39
+
40
+ If multiple threads call `get_with` with the same key, only one calls `initializer`,
41
+ the others wait until the value is set.
42
+ """
43
+
44
+ @overload
45
+ def remove(self, key: K, default: D) -> V | D: ...
46
+ @overload
47
+ def remove(self, key: K, default: D | None = None) -> V | D | None: ...
48
+ def clear(self) -> None: ...
49
+ def count(self) -> int: ...
50
+
51
+ def cached(
52
+ maxsize: int = 128,
53
+ typed: bool = False,
54
+ *,
55
+ ttl: int | float | None = None,
56
+ tti: int | float | None = None,
57
+ wait_concurrent: bool = False,
58
+ policy: Policy = "tiny_lfu",
59
+ ) -> Callable[[Fn], Fn]:
60
+ """Decorator for caching function results in a thread-safe in-memory cache.
61
+
62
+ - If the decorated function is synchronous: returns the cached value or computes and stores it.
63
+ - If the decorated function is asynchronous: returns an awaitable which yields the cached result.
64
+ - If wait_concurrent=True: concurrent calls with the same arguments wait on a single in-flight computation.
65
+ For async functions this is implemented via a shared asyncio.Task; all awaiters receive the same result
66
+ or the same exception.
67
+ """
moka_py/py.typed ADDED
File without changes
@@ -0,0 +1,446 @@
1
+ Metadata-Version: 2.4
2
+ Name: moka-py
3
+ Version: 0.3.0
4
+ Classifier: Programming Language :: Python :: 3.9
5
+ Classifier: Programming Language :: Python :: 3.10
6
+ Classifier: Programming Language :: Python :: 3.11
7
+ Classifier: Programming Language :: Python :: 3.12
8
+ Classifier: Programming Language :: Python :: 3.13
9
+ Classifier: Programming Language :: Python :: 3.14
10
+ Classifier: Typing :: Typed
11
+ Classifier: Programming Language :: Rust
12
+ Classifier: Programming Language :: Python :: Implementation :: CPython
13
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
14
+ License-File: LICENSE
15
+ Summary: A high performance caching library for Python written in Rust
16
+ Requires-Python: >=3.9
17
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
18
+ Project-URL: Homepage, https://github.com/deliro/moka-py
19
+ Project-URL: Issues, https://github.com/deliro/moka-py/issues
20
+ Project-URL: Repository, https://github.com/deliro/moka-py
21
+
22
+ # moka-py
23
+
24
+ **moka-py** is a Python binding to the [Moka](https://github.com/moka-rs/moka) cache written in Rust. It brings Moka’s high-performance, feature‑rich caching to Python.
25
+
26
+ ## Features
27
+
28
+ - **Synchronous cache:** Thread-safe in-memory caching for Python.
29
+ - **TTL:** Evicts entries after a configurable time to live (TTL).
30
+ - **TTI:** Evicts entries after a configurable time to idle (TTI).
31
+ - **Per-entry TTL / TTI:** Override the cache-wide TTL or TTI on individual entries.
32
+ - **Size-based eviction:** Removes items when capacity is exceeded using TinyLFU or LRU.
33
+ - **Concurrency:** Optimized for high-throughput, concurrent access.
34
+ - **Fully typed:** `mypy` and `pyright` friendly.
35
+
36
+ ## Installation
37
+
38
+ Install with `uv`:
39
+
40
+ ```bash
41
+ uv add moka-py
42
+ ```
43
+
44
+ Or with `poetry`:
45
+
46
+ ```bash
47
+ poetry add moka-py
48
+ ```
49
+
50
+ Or with `pip`:
51
+
52
+ ```bash
53
+ pip install moka-py
54
+ ```
55
+
56
+ ## Table of Contents
57
+
58
+ - [Installation](#installation)
59
+ - [Features](#features)
60
+ - [Usage](#usage)
61
+ - [Using moka_py.Moka](#using-moka_pymoka)
62
+ - [Per-entry TTL / TTI](#per-entry-ttl--tti)
63
+ - [@cached decorator](#as-a-decorator)
64
+ - [Async support](#async-support)
65
+ - [Coalesce concurrent calls (wait_concurrent)](#coalesce-concurrent-calls-wait_concurrent)
66
+ - [Eviction listener](#eviction-listener)
67
+ - [Removing entries](#removing-entries)
68
+ - [How it works](#how-it-works)
69
+ - [Eviction policies](#eviction-policies)
70
+ - [Performance](#performance)
71
+ - [License](#license)
72
+
73
+ ## Usage
74
+
75
+ ### Using moka_py.Moka
76
+
77
+ ```python
78
+ from time import sleep
79
+ from moka_py import Moka
80
+
81
+
82
+ # Create a cache with a capacity of 100 entries, with a TTL of 10.0 seconds
83
+ # and a TTI of 0.1 seconds. Entries are always removed after 10 seconds
84
+ # and are removed after 0.1 seconds if there are no `get`s happened for this time.
85
+ #
86
+ # Both TTL and TTI settings are optional. In the absence of an entry,
87
+ # the corresponding policy will not expire it.
88
+
89
+ # The default eviction policy is "tiny_lfu" which is optimal for most workloads,
90
+ # but you can choose "lru" as well.
91
+ cache: Moka[str, list[int]] = Moka(capacity=100, ttl=10.0, tti=0.1, policy="lru")
92
+
93
+ # Insert a value.
94
+ cache.set("key", [3, 2, 1])
95
+
96
+ # Retrieve the value.
97
+ assert cache.get("key") == [3, 2, 1]
98
+
99
+ # Wait for 0.1+ seconds, and the entry will be automatically evicted.
100
+ sleep(0.12)
101
+ assert cache.get("key") is None
102
+ ```
103
+
104
+ ### Per-entry TTL / TTI
105
+
106
+ By default, TTL and TTI are set once for the entire cache. You can also set them
107
+ per entry by passing `ttl` and/or `tti` to `set()` or `get_with()`:
108
+
109
+ ```python
110
+ from time import sleep
111
+ from moka_py import Moka
112
+
113
+
114
+ cache = Moka(100)
115
+
116
+ cache.set("short-lived", "value", ttl=0.5)
117
+ cache.set("session", {"user": "alice"}, ttl=3600.0)
118
+ cache.set("idle-sensitive", "value", tti=1.0)
119
+ cache.set("both", "value", ttl=60.0, tti=5.0)
120
+
121
+ # Entries without per-entry ttl/tti never expire (unless the cache has global settings).
122
+ cache.set("permanent", "value")
123
+
124
+ sleep(0.6)
125
+ assert cache.get("short-lived") is None # expired after 0.5s
126
+ assert cache.get("session") is not None # still alive
127
+ assert cache.get("permanent") is not None
128
+ ```
129
+
130
+ `get_with()` accepts the same parameters:
131
+
132
+ ```python
133
+ from moka_py import Moka
134
+
135
+
136
+ cache = Moka(100)
137
+
138
+ value = cache.get_with("key", lambda: "computed", ttl=30.0)
139
+ ```
140
+
141
+ #### Concurrent `get_with` with different TTL / TTI
142
+
143
+ `get_with()` guarantees that only **one** thread executes the initializer for a given key (stampede protection).
144
+ When multiple threads call `get_with()` for the same key concurrently with **different** `ttl`/`tti` values,
145
+ the thread that wins the race runs its initializer — and its `ttl`/`tti` values are stored with the entry.
146
+ All other threads receive the same cached value and their `ttl`/`tti` parameters are **silently ignored**.
147
+
148
+ ```python
149
+ import threading
150
+ from moka_py import Moka
151
+
152
+
153
+ cache = Moka(100)
154
+
155
+ # Thread A: get_with("k", compute, ttl=1.0)
156
+ # Thread B: get_with("k", compute, ttl=60.0)
157
+ #
158
+ # If thread A wins, the entry expires in 1 second.
159
+ # If thread B wins, the entry expires in 60 seconds.
160
+ # The loser's ttl is discarded — it is NOT merged or compared.
161
+ ```
162
+
163
+ #### Interaction with cache-wide TTL / TTI
164
+
165
+ When the cache is constructed with global `ttl` or `tti` **and** an entry specifies its own, the entry
166
+ expires at whichever deadline comes **first**.
167
+
168
+ > **WARNING**
169
+ >
170
+ > Per-entry TTL / TTI can only make an entry expire **sooner** than the cache-wide
171
+ > policy, not later. This is a technical limitation of the underlying
172
+ > [Moka](https://github.com/moka-rs/moka) library: global and per-entry expiration
173
+ > are evaluated independently, and the earliest deadline wins.
174
+ >
175
+ > If you need entries with different lifetimes that can **exceed** a common default,
176
+ > do not set global `ttl`/`tti` on the cache. Use per-entry values exclusively instead.
177
+
178
+ ```python
179
+ from moka_py import Moka
180
+
181
+ # Do this:
182
+ cache = Moka(1000)
183
+ cache.set("short", "v", ttl=60.0)
184
+ cache.set("long", "v", ttl=300.0) # works as expected
185
+
186
+ # NOT this — "long" will still expire in 60 s:
187
+ cache = Moka(1000, ttl=60.0)
188
+ cache.set("long", "v", ttl=300.0) # capped at 60 s by the global policy
189
+ ```
190
+
191
+ ```python
192
+ from time import sleep
193
+ from moka_py import Moka
194
+
195
+
196
+ # Global TTL of 10 seconds.
197
+ cache = Moka(100, ttl=10.0)
198
+
199
+ # This entry will expire in 0.5 s (per-entry TTL wins, it is shorter).
200
+ cache.set("fast", "value", ttl=0.5)
201
+
202
+ # This entry keeps the global 10 s TTL (per-entry TTL=20 s is longer, so global wins).
203
+ cache.set("slow", "value", ttl=20.0)
204
+
205
+ sleep(0.6)
206
+ assert cache.get("fast") is None
207
+ assert cache.get("slow") is not None
208
+ ```
209
+
210
+ ### As a decorator
211
+
212
+ moka-py can be used as a drop-in replacement for `@lru_cache()` with TTL + TTI support:
213
+
214
+ ```python
215
+ from time import sleep
216
+ from moka_py import cached
217
+
218
+
219
+ calls = []
220
+
221
+
222
+ @cached(maxsize=1024, ttl=5.0, tti=0.05)
223
+ def f(x, y):
224
+ calls.append((x, y))
225
+ return x + y
226
+
227
+
228
+ assert f(1, 2) == 3 # calls computations
229
+ assert f(1, 2) == 3 # gets from the cache
230
+ assert len(calls) == 1
231
+ sleep(0.06)
232
+ assert f(1, 2) == 3 # calls computations again (since TTI has passed)
233
+ assert len(calls) == 2
234
+ ```
235
+
236
+ ### Async support
237
+
238
+ Unlike `@lru_cache()`, `@moka_py.cached()` supports async functions:
239
+
240
+ ```python
241
+ import asyncio
242
+ from time import perf_counter
243
+ from moka_py import cached
244
+
245
+
246
+ calls = []
247
+
248
+
249
+ @cached(maxsize=1024, ttl=5.0, tti=0.1)
250
+ async def f(x, y):
251
+ calls.append((x, y))
252
+ await asyncio.sleep(0.05)
253
+ return x + y
254
+
255
+
256
+ start = perf_counter()
257
+ assert asyncio.run(f(5, 6)) == 11
258
+ assert asyncio.run(f(5, 6)) == 11 # from cache
259
+ elapsed = perf_counter() - start
260
+ assert elapsed < 0.2
261
+ assert len(calls) == 1
262
+ ```
263
+
264
+ ### Coalesce concurrent calls (wait_concurrent)
265
+
266
+ `moka-py` can synchronize threads on keys
267
+
268
+ ```python
269
+ import moka_py
270
+ from typing import Any
271
+ from time import sleep
272
+ import threading
273
+ from decimal import Decimal
274
+
275
+
276
+ calls = []
277
+
278
+
279
+ @moka_py.cached(ttl=5, wait_concurrent=True)
280
+ def get_user(id_: int) -> dict[str, Any]:
281
+ calls.append(id_)
282
+ sleep(0.02) # simulate an HTTP request (short for tests)
283
+ return {
284
+ "id": id_,
285
+ "first_name": "Jack",
286
+ "last_name": "Pot",
287
+ }
288
+
289
+
290
+ def process_request(path: str, user_id: int) -> None:
291
+ user = get_user(user_id)
292
+ ...
293
+
294
+
295
+ def charge_money(from_user_id: int, amount: Decimal) -> None:
296
+ user = get_user(from_user_id)
297
+ ...
298
+
299
+
300
+ if __name__ == '__main__':
301
+ request_processing = threading.Thread(target=process_request, args=("/user/info/123", 123))
302
+ money_charging = threading.Thread(target=charge_money, args=(123, Decimal("3.14")))
303
+ request_processing.start()
304
+ money_charging.start()
305
+ request_processing.join()
306
+ money_charging.join()
307
+
308
+ # Only one call occurred. Without `wait_concurrent`, each thread would issue its own HTTP request
309
+ # before the cache entry is set.
310
+ assert len(calls) == 1
311
+ ```
312
+
313
+ ### Async wait_concurrent
314
+
315
+ When using `wait_concurrent=True` with async functions, `moka-py` creates a shared `asyncio.Task` per cache key. All
316
+ concurrent callers `await` the same task and receive the same result or exception. This eliminates duplicate in-flight
317
+ work for identical arguments.
318
+
319
+ ### Eviction listener
320
+
321
+ `moka-py` supports an eviction listener, called whenever a key is removed.
322
+ The listener must be a three-argument function `(key, value, cause)` and uses positional arguments only.
323
+
324
+ Possible reasons:
325
+
326
+ 1. `"expired"`: The entry's expiration timestamp has passed.
327
+ 2. `"explicit"`: The entry was manually removed by the user (`.remove()` is called).
328
+ 3. `"replaced"`: The entry itself was not actually removed, but its value was replaced by the user (`.set()` is
329
+ called for an existing entry).
330
+ 4. `"size"`: The entry was evicted due to size constraints.
331
+
332
+ ```python
333
+ from typing import Literal
334
+ from moka_py import Moka
335
+ from time import sleep
336
+
337
+
338
+ def key_evicted(
339
+ k: str,
340
+ v: list[int],
341
+ cause: Literal["explicit", "size", "expired", "replaced"]
342
+ ):
343
+ events.append((k, v, cause))
344
+
345
+
346
+ events: list[tuple[str, list[int], str]] = []
347
+
348
+
349
+ moka: Moka[str, list[int]] = Moka(2, eviction_listener=key_evicted, ttl=0.5)
350
+ moka.set("hello", [1, 2, 3])
351
+ moka.set("hello", [3, 2, 1]) # replaced
352
+ moka.set("foo", [4]) # expired
353
+ moka.set("baz", "size")
354
+ moka.remove("foo") # explicit
355
+ sleep(1.0)
356
+ moka.get("anything") # this will trigger eviction for expired
357
+
358
+ causes = {c for _, _, c in events}
359
+ assert causes == {"size", "expired", "replaced", "explicit"}, events
360
+ ```
361
+
362
+ > IMPORTANT NOTES
363
+ > 1) The listener is not called just-in-time. `moka` has no background threads or tasks; it runs only during cache operations.
364
+ > 2) The listener must not raise exceptions. If it does, the exception may surface from any `moka-py` method on any thread.
365
+ > 3) Keep the listener fast. Heavy work (especially I/O) will slow `.get()`, `.set()`, etc. Offload via `ThreadPoolExecutor.submit()` or `asyncio.create_task()`
366
+ > 4) **Per-entry TTL / TTI and the eviction listener.** Per-entry expiry fires the
367
+ > listener with `"expired"` just like global TTL/TTI does. The notification is
368
+ > delivered lazily during subsequent cache operations (e.g. `get`, `set`) after
369
+ > the per-entry deadline passes — it is not instant.
370
+
371
+ ### Removing entries
372
+
373
+ Remove an entry with `Moka.remove(key)`. It returns the previous value if present; otherwise `None`.
374
+
375
+ ```python
376
+ from moka_py import Moka
377
+
378
+
379
+ c = Moka(128)
380
+ c.set("hello", "world")
381
+ assert c.remove("hello") == "world"
382
+ assert c.get("hello") is None
383
+ ```
384
+
385
+ If `None` is a valid cached value, distinguish it from absence using `Moka.remove(key, default=...)`:
386
+
387
+ ```python
388
+ from moka_py import Moka
389
+
390
+
391
+ c = Moka(128)
392
+ c.set("hello", None)
393
+ assert c.remove("hello", default="WAS_NOT_SET") is None # None was set explicitly
394
+
395
+ # Now the entry "hello" does not exist, so `default` is returned
396
+ assert c.remove("hello", default="WAS_NOT_SET") == "WAS_NOT_SET"
397
+ ```
398
+
399
+ ## How it works
400
+
401
+ `Moka` stores Python object references
402
+ (by [`Py_INCREF`](https://docs.python.org/3/c-api/refcounting.html#c.Py_INCREF)) and does not serialize or deserialize values.
403
+ You can use any Python object as a value and any hashable object as a key (`__hash__` is used).
404
+ Mutable objects remain mutable:
405
+
406
+ ```python
407
+ from moka_py import Moka
408
+
409
+
410
+ c = Moka(128)
411
+ my_list = [1, 2, 3]
412
+ c.set("hello", my_list)
413
+ still_the_same = c.get("hello")
414
+ still_the_same.append(4)
415
+ assert my_list == [1, 2, 3, 4]
416
+ ```
417
+
418
+ ## Eviction policies
419
+
420
+ `moka-py` uses TinyLFU by default, with an LRU option. Learn more in the
421
+ [Moka wiki](https://github.com/moka-rs/moka/wiki#admission-and-eviction-policies).
422
+
423
+ ## Performance
424
+
425
+ *Measured using MacBook Pro 14-inch, Nov 2024 with Apple M4 Pro processor and 24GiB RAM*
426
+
427
+ ```
428
+ -------------------------------------------------------------------------------------------- benchmark: 9 tests -------------------------------------------------------------------------------------------
429
+ Name (time in ns) Min Max Mean StdDev Median IQR Outliers OPS (Mops/s) Rounds Iterations
430
+ -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
431
+ test_bench_remove 68.1140 (1.0) 68.2812 (1.0) 68.1806 (1.0) 0.0671 (1.0) 68.1621 (1.0) 0.1000 (1.0) 1;0 14.6669 (1.0) 5 10000000
432
+ test_bench_get[lru-False] 77.5126 (1.14) 78.2797 (1.15) 77.7823 (1.14) 0.2947 (4.39) 77.6792 (1.14) 0.2913 (2.91) 1;0 12.8564 (0.88) 5 10000000
433
+ test_bench_get[tiny_lfu-False] 78.0985 (1.15) 78.8168 (1.15) 78.4920 (1.15) 0.2678 (3.99) 78.4868 (1.15) 0.3429 (3.43) 2;0 12.7401 (0.87) 5 10000000
434
+ test_bench_get[lru-True] 89.1512 (1.31) 89.6459 (1.31) 89.4480 (1.31) 0.1910 (2.85) 89.5190 (1.31) 0.2458 (2.46) 2;0 11.1797 (0.76) 5 10000000
435
+ test_bench_get[tiny_lfu-True] 91.4891 (1.34) 91.9214 (1.35) 91.6827 (1.34) 0.1867 (2.78) 91.7339 (1.35) 0.3141 (3.14) 2;0 10.9072 (0.74) 5 10000000
436
+ test_bench_get_with 137.0672 (2.01) 137.8738 (2.02) 137.4143 (2.02) 0.3182 (4.74) 137.2839 (2.01) 0.4530 (4.53) 2;0 7.2773 (0.50) 5 10000000
437
+ test_bench_set_str_key 354.1709 (5.20) 355.5768 (5.21) 354.9073 (5.21) 0.5631 (8.39) 355.0415 (5.21) 0.8900 (8.90) 2;0 2.8176 (0.19) 5 1408297
438
+ test_bench_set[tiny_lfu] 355.6927 (5.22) 356.9633 (5.23) 356.3647 (5.23) 0.5645 (8.41) 356.4059 (5.23) 1.0390 (10.40) 2;0 2.8061 (0.19) 5 1405450
439
+ test_bench_set[lru] 388.7005 (5.71) 389.5825 (5.71) 389.1170 (5.71) 0.3837 (5.72) 389.0796 (5.71) 0.6915 (6.92) 2;0 2.5699 (0.18) 5 1295615
440
+ -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
441
+ ```
442
+
443
+ ## License
444
+
445
+ `moka-py` is distributed under the [MIT license](LICENSE).
446
+
@@ -0,0 +1,8 @@
1
+ moka_py/__init__.py,sha256=WMkLJ34xVZ9eEnWsnfkOYxM_cWbo3IztW_3gUvmJ2V0,2318
2
+ moka_py/__init__.pyi,sha256=1VMXf8_CKuik1EGAJzJ04kN0BgSZyPlxz7ceSKsTO5w,2297
3
+ moka_py/moka_py.cpython-314-i386-linux-gnu.so,sha256=Bcv-hrzRhjk8dMj5mPFjnsvtuRmz20eqbxo4eCK43yc,617544
4
+ moka_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ moka_py-0.3.0.dist-info/METADATA,sha256=cbEf4W_gAb5iDndFWBTdVZ_ApdxrhoGdGsAaxDFUZKU,15095
6
+ moka_py-0.3.0.dist-info/WHEEL,sha256=SVj-mRhc8RTrK4UpVRzxX8JD-f_LshAVh79WuN6tVL8,139
7
+ moka_py-0.3.0.dist-info/licenses/LICENSE,sha256=CUj5ca53JXgIACVKNEOFOlbMWtxY4RXXj9cELIv2R04,1069
8
+ moka_py-0.3.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.11.5)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-manylinux_2_5_i686
5
+ Tag: cp314-cp314-manylinux1_i686
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Roman Kitaev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.