beaver-db 0.8.0__py3-none-any.whl → 0.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of beaver-db might be problematic. Click here for more details.
- beaver/channels.py +163 -32
- beaver/core.py +21 -19
- {beaver_db-0.8.0.dist-info → beaver_db-0.9.0.dist-info}/METADATA +33 -13
- beaver_db-0.9.0.dist-info/RECORD +12 -0
- beaver_db-0.8.0.dist-info/RECORD +0 -12
- {beaver_db-0.8.0.dist-info → beaver_db-0.9.0.dist-info}/WHEEL +0 -0
- {beaver_db-0.8.0.dist-info → beaver_db-0.9.0.dist-info}/licenses/LICENSE +0 -0
- {beaver_db-0.8.0.dist-info → beaver_db-0.9.0.dist-info}/top_level.txt +0 -0
beaver/channels.py
CHANGED
|
@@ -1,54 +1,185 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import sqlite3
|
|
3
|
+
import threading
|
|
3
4
|
import time
|
|
4
|
-
from
|
|
5
|
+
from queue import Empty, Queue
|
|
6
|
+
from typing import Any, Iterator, Set
|
|
5
7
|
|
|
8
|
+
# A special message object used to signal the listener to gracefully shut down.
|
|
9
|
+
_SHUTDOWN_SENTINEL = object()
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
|
|
12
|
+
class Subscriber:
|
|
8
13
|
"""
|
|
9
|
-
A
|
|
14
|
+
A thread-safe message receiver for a specific channel subscription.
|
|
15
|
+
|
|
16
|
+
This object is designed to be used as a context manager (`with` statement).
|
|
17
|
+
It holds a dedicated in-memory queue that receives messages from the
|
|
18
|
+
channel's central polling thread, ensuring that a slow listener does not
|
|
19
|
+
impact others.
|
|
10
20
|
"""
|
|
11
21
|
|
|
12
|
-
def __init__(
|
|
13
|
-
self
|
|
14
|
-
|
|
22
|
+
def __init__(self, channel: "ChannelManager"):
|
|
23
|
+
self._channel = channel
|
|
24
|
+
self._queue: Queue = Queue()
|
|
25
|
+
|
|
26
|
+
def __enter__(self) -> "Subscriber":
|
|
27
|
+
"""Registers the listener's queue with the channel to start receiving messages."""
|
|
28
|
+
self._channel._register(self._queue)
|
|
29
|
+
return self
|
|
30
|
+
|
|
31
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
32
|
+
"""Unregisters the listener's queue from the channel to stop receiving messages."""
|
|
33
|
+
self._channel._unregister(self._queue)
|
|
34
|
+
|
|
35
|
+
def listen(self, timeout: float | None = None) -> Iterator[Any]:
|
|
15
36
|
"""
|
|
16
|
-
|
|
37
|
+
Returns a blocking iterator that yields messages as they arrive.
|
|
38
|
+
|
|
39
|
+
This method pulls messages from the listener's dedicated, thread-safe
|
|
40
|
+
in-memory queue. It performs no database operations itself.
|
|
17
41
|
|
|
18
42
|
Args:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
poll_interval: The time in seconds to wait between polling for new messages.
|
|
43
|
+
timeout: If provided, the iterator will raise `queue.Empty` if no message is
|
|
44
|
+
received within this many seconds.
|
|
22
45
|
"""
|
|
46
|
+
while True:
|
|
47
|
+
try:
|
|
48
|
+
msg = self._queue.get(timeout=timeout)
|
|
49
|
+
|
|
50
|
+
if msg is _SHUTDOWN_SENTINEL:
|
|
51
|
+
break
|
|
52
|
+
|
|
53
|
+
yield msg
|
|
54
|
+
except Empty:
|
|
55
|
+
raise TimeoutError(f"Timeout {timeout}s expired.")
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
class ChannelManager:
|
|
59
|
+
"""
|
|
60
|
+
The central hub for a named pub/sub channel.
|
|
61
|
+
|
|
62
|
+
This object manages all active listeners for the channel and runs a single,
|
|
63
|
+
efficient background thread to poll the database for new messages. It then
|
|
64
|
+
"fans out" these messages to all subscribed listeners.
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
def __init__(
|
|
68
|
+
self,
|
|
69
|
+
name: str,
|
|
70
|
+
conn: sqlite3.Connection,
|
|
71
|
+
db_path: str,
|
|
72
|
+
poll_interval: float = 0.1,
|
|
73
|
+
):
|
|
74
|
+
self._name = name
|
|
23
75
|
self._conn = conn
|
|
24
|
-
self.
|
|
76
|
+
self._db_path = db_path
|
|
25
77
|
self._poll_interval = poll_interval
|
|
26
|
-
self.
|
|
78
|
+
self._listeners: Set[Queue] = set()
|
|
79
|
+
self._lock = threading.Lock()
|
|
80
|
+
self._polling_thread: threading.Thread | None = None
|
|
81
|
+
self._stop_event = threading.Event()
|
|
27
82
|
|
|
28
|
-
def
|
|
29
|
-
"""
|
|
30
|
-
|
|
83
|
+
def _register(self, queue: Queue):
|
|
84
|
+
"""Adds a listener's queue and starts the poller if it's the first one."""
|
|
85
|
+
|
|
86
|
+
with self._lock:
|
|
87
|
+
self._listeners.add(queue)
|
|
88
|
+
# If the polling thread isn't running, start it.
|
|
89
|
+
if self._polling_thread is None or not self._polling_thread.is_alive():
|
|
90
|
+
self._start_polling()
|
|
31
91
|
|
|
32
|
-
def
|
|
92
|
+
def _unregister(self, queue: Queue):
|
|
93
|
+
"""Removes a listener's queue and stops the poller if it's the last one."""
|
|
94
|
+
|
|
95
|
+
with self._lock:
|
|
96
|
+
self._listeners.discard(queue)
|
|
97
|
+
# If there are no more listeners, stop the polling thread to save resources.
|
|
98
|
+
if not self._listeners:
|
|
99
|
+
self._stop_polling()
|
|
100
|
+
|
|
101
|
+
def _start_polling(self):
|
|
102
|
+
"""Starts the background polling thread."""
|
|
103
|
+
self._stop_event.clear()
|
|
104
|
+
self._polling_thread = threading.Thread(target=self._polling_loop, daemon=True)
|
|
105
|
+
self._polling_thread.start()
|
|
106
|
+
|
|
107
|
+
def _stop_polling(self):
|
|
108
|
+
"""Signals the background polling thread to stop."""
|
|
109
|
+
if self._polling_thread and self._polling_thread.is_alive():
|
|
110
|
+
self._stop_event.set()
|
|
111
|
+
self._polling_thread.join()
|
|
112
|
+
self._polling_thread = None
|
|
113
|
+
|
|
114
|
+
def close(self):
|
|
115
|
+
"""Reliable close this channel and removes listeners."""
|
|
116
|
+
self._stop_polling()
|
|
117
|
+
|
|
118
|
+
with self._lock:
|
|
119
|
+
for listener in self._listeners:
|
|
120
|
+
listener.put(_SHUTDOWN_SENTINEL)
|
|
121
|
+
|
|
122
|
+
self._listeners.clear()
|
|
123
|
+
|
|
124
|
+
def _polling_loop(self):
|
|
33
125
|
"""
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
126
|
+
The main loop for the background thread.
|
|
127
|
+
|
|
128
|
+
This function polls the database for new messages and fans them out
|
|
129
|
+
to all registered listener queues.
|
|
37
130
|
"""
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
131
|
+
# A separate SQLite connection is required for each thread.
|
|
132
|
+
thread_conn = sqlite3.connect(self._db_path, check_same_thread=False)
|
|
133
|
+
thread_conn.row_factory = sqlite3.Row
|
|
134
|
+
|
|
135
|
+
# The poller starts listening for messages from this moment forward.
|
|
136
|
+
last_seen_timestamp = time.time()
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
while not self._stop_event.is_set():
|
|
140
|
+
cursor = thread_conn.cursor()
|
|
41
141
|
cursor.execute(
|
|
42
|
-
"SELECT timestamp, message_payload FROM beaver_pubsub_log WHERE channel_name = ? AND timestamp > ? ORDER BY timestamp ASC
|
|
43
|
-
(self.
|
|
142
|
+
"SELECT timestamp, message_payload FROM beaver_pubsub_log WHERE channel_name = ? AND timestamp > ? ORDER BY timestamp ASC",
|
|
143
|
+
(self._name, last_seen_timestamp),
|
|
44
144
|
)
|
|
45
|
-
|
|
145
|
+
messages = cursor.fetchall()
|
|
46
146
|
cursor.close()
|
|
47
147
|
|
|
48
|
-
if
|
|
49
|
-
#
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
#
|
|
54
|
-
|
|
148
|
+
if messages:
|
|
149
|
+
# Update the timestamp to the last message we've seen.
|
|
150
|
+
last_seen_timestamp = messages[-1]["timestamp"]
|
|
151
|
+
|
|
152
|
+
# The "fan-out": Push messages to all active listener queues.
|
|
153
|
+
# This block is locked to prevent modification of the listeners set
|
|
154
|
+
# while we are iterating over it.
|
|
155
|
+
with self._lock:
|
|
156
|
+
for queue in self._listeners:
|
|
157
|
+
for row in messages:
|
|
158
|
+
queue.put(json.loads(row["message_payload"]))
|
|
159
|
+
|
|
160
|
+
# Wait for the poll interval before checking for new messages again.
|
|
161
|
+
time.sleep(self._poll_interval)
|
|
162
|
+
|
|
163
|
+
thread_conn.close()
|
|
164
|
+
|
|
165
|
+
def subscribe(self) -> Subscriber:
|
|
166
|
+
"""Creates a new subscription, returning a Listener context manager."""
|
|
167
|
+
return Subscriber(self)
|
|
168
|
+
|
|
169
|
+
def publish(self, payload: Any):
|
|
170
|
+
"""
|
|
171
|
+
Publishes a JSON-serializable message to the channel.
|
|
172
|
+
|
|
173
|
+
This is a synchronous operation that performs a fast, atomic INSERT
|
|
174
|
+
into the database's pub/sub log.
|
|
175
|
+
"""
|
|
176
|
+
try:
|
|
177
|
+
json_payload = json.dumps(payload)
|
|
178
|
+
except TypeError as e:
|
|
179
|
+
raise TypeError("Message payload must be JSON-serializable.") from e
|
|
180
|
+
|
|
181
|
+
with self._conn:
|
|
182
|
+
self._conn.execute(
|
|
183
|
+
"INSERT INTO beaver_pubsub_log (timestamp, channel_name, message_payload) VALUES (?, ?, ?)",
|
|
184
|
+
(time.time(), self._name, json_payload),
|
|
185
|
+
)
|
beaver/core.py
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import json
|
|
2
1
|
import sqlite3
|
|
3
|
-
import
|
|
4
|
-
from typing import Any
|
|
2
|
+
import threading
|
|
5
3
|
|
|
6
4
|
from .dicts import DictManager
|
|
7
5
|
from .lists import ListManager
|
|
@@ -29,6 +27,8 @@ class BeaverDB:
|
|
|
29
27
|
self._conn.execute("PRAGMA journal_mode=WAL;")
|
|
30
28
|
self._conn.row_factory = sqlite3.Row
|
|
31
29
|
self._create_all_tables()
|
|
30
|
+
self._channels: dict[str, ChannelManager] = {}
|
|
31
|
+
self._channels_lock = threading.Lock()
|
|
32
32
|
|
|
33
33
|
def _create_all_tables(self):
|
|
34
34
|
"""Initializes all required tables in the database file."""
|
|
@@ -170,6 +170,10 @@ class BeaverDB:
|
|
|
170
170
|
def close(self):
|
|
171
171
|
"""Closes the database connection."""
|
|
172
172
|
if self._conn:
|
|
173
|
+
# Cleanly shut down any active polling threads before closing
|
|
174
|
+
with self._channels_lock:
|
|
175
|
+
for channel in self._channels.values():
|
|
176
|
+
channel.close()
|
|
173
177
|
self._conn.close()
|
|
174
178
|
|
|
175
179
|
# --- Factory and Passthrough Methods ---
|
|
@@ -178,41 +182,39 @@ class BeaverDB:
|
|
|
178
182
|
"""Returns a wrapper object for interacting with a named dictionary."""
|
|
179
183
|
if not isinstance(name, str) or not name:
|
|
180
184
|
raise TypeError("Dictionary name must be a non-empty string.")
|
|
185
|
+
|
|
181
186
|
return DictManager(name, self._conn)
|
|
182
187
|
|
|
183
188
|
def list(self, name: str) -> ListManager:
|
|
184
189
|
"""Returns a wrapper object for interacting with a named list."""
|
|
185
190
|
if not isinstance(name, str) or not name:
|
|
186
191
|
raise TypeError("List name must be a non-empty string.")
|
|
192
|
+
|
|
187
193
|
return ListManager(name, self._conn)
|
|
188
194
|
|
|
189
195
|
def queue(self, name: str) -> QueueManager:
|
|
190
196
|
"""Returns a wrapper object for interacting with a persistent priority queue."""
|
|
191
197
|
if not isinstance(name, str) or not name:
|
|
192
198
|
raise TypeError("Queue name must be a non-empty string.")
|
|
199
|
+
|
|
193
200
|
return QueueManager(name, self._conn)
|
|
194
201
|
|
|
195
202
|
def collection(self, name: str) -> CollectionManager:
|
|
196
203
|
"""Returns a wrapper for interacting with a document collection."""
|
|
197
204
|
if not isinstance(name, str) or not name:
|
|
198
205
|
raise TypeError("Collection name must be a non-empty string.")
|
|
206
|
+
|
|
199
207
|
return CollectionManager(name, self._conn)
|
|
200
208
|
|
|
201
|
-
def
|
|
202
|
-
"""
|
|
203
|
-
|
|
209
|
+
def channel(self, name: str) -> ChannelManager:
|
|
210
|
+
"""
|
|
211
|
+
Returns a singleton Channel instance for high-efficiency pub/sub.
|
|
212
|
+
"""
|
|
213
|
+
if not isinstance(name, str) or not name:
|
|
204
214
|
raise ValueError("Channel name must be a non-empty string.")
|
|
205
|
-
try:
|
|
206
|
-
json_payload = json.dumps(payload)
|
|
207
|
-
except TypeError as e:
|
|
208
|
-
raise TypeError("Message payload must be JSON-serializable.") from e
|
|
209
|
-
|
|
210
|
-
with self._conn:
|
|
211
|
-
self._conn.execute(
|
|
212
|
-
"INSERT INTO beaver_pubsub_log (timestamp, channel_name, message_payload) VALUES (?, ?, ?)",
|
|
213
|
-
(time.time(), channel_name, json_payload),
|
|
214
|
-
)
|
|
215
215
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
216
|
+
# Use a thread-safe lock to ensure only one Channel object is created per name.
|
|
217
|
+
with self._channels_lock:
|
|
218
|
+
if name not in self._channels:
|
|
219
|
+
self._channels[name] = ChannelManager(name, self._conn, self._db_path)
|
|
220
|
+
return self._channels[name]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: beaver-db
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: Fast, embedded, and multi-modal DB based on SQLite for AI-powered applications.
|
|
5
5
|
Requires-Python: >=3.13
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -9,6 +9,10 @@ Requires-Dist: numpy>=2.3.3
|
|
|
9
9
|
Requires-Dist: scipy>=1.16.2
|
|
10
10
|
Dynamic: license-file
|
|
11
11
|
|
|
12
|
+
I've updated the README to highlight the new high-efficiency, thread-safe, and process-safe pub/sub system. I've also added an example of how you can use it to build real-time, event-driven applications.
|
|
13
|
+
|
|
14
|
+
Here are the changes:
|
|
15
|
+
|
|
12
16
|
# beaver 🦫
|
|
13
17
|
|
|
14
18
|
A fast, single-file, multi-modal database for Python, built with the standard `sqlite3` library.
|
|
@@ -27,7 +31,7 @@ A fast, single-file, multi-modal database for Python, built with the standard `s
|
|
|
27
31
|
|
|
28
32
|
## Core Features
|
|
29
33
|
|
|
30
|
-
- **
|
|
34
|
+
- **High-Efficiency Pub/Sub**: A powerful, thread and process-safe publish-subscribe system for real-time messaging with a fan-out architecture.
|
|
31
35
|
- **Namespaced Key-Value Dictionaries**: A Pythonic, dictionary-like interface for storing any JSON-serializable object within separate namespaces with optional TTL for cache implementations.
|
|
32
36
|
- **Pythonic List Management**: A fluent, Redis-like interface for managing persistent, ordered lists.
|
|
33
37
|
- **Persistent Priority Queue**: A high-performance, persistent queue that always returns the item with the highest priority, perfect for task management.
|
|
@@ -163,19 +167,36 @@ if response is None:
|
|
|
163
167
|
api_cache.set("weather_new_york", response, ttl_seconds=3600)
|
|
164
168
|
```
|
|
165
169
|
|
|
170
|
+
### 6. Real-time Event-Driven Systems
|
|
171
|
+
|
|
172
|
+
Use the **high-efficiency pub/sub system** to build applications where different components react to events in real-time. This is perfect for decoupled systems, real-time UIs, or monitoring services.
|
|
173
|
+
|
|
174
|
+
```python
|
|
175
|
+
# In one process or thread (e.g., a monitoring service)
|
|
176
|
+
system_events = db.channel("system_events")
|
|
177
|
+
system_events.publish({"event": "user_login", "user_id": "alice"})
|
|
178
|
+
|
|
179
|
+
# In another process or thread (e.g., a UI updater or logger)
|
|
180
|
+
with db.channel("system_events").subscribe() as listener:
|
|
181
|
+
for message in listener.listen():
|
|
182
|
+
print(f"Event received: {message}")
|
|
183
|
+
# >> Event received: {'event': 'user_login', 'user_id': 'alice'}
|
|
184
|
+
```
|
|
185
|
+
|
|
166
186
|
## More Examples
|
|
167
187
|
|
|
168
188
|
For more in-depth examples, check out the scripts in the `examples/` directory:
|
|
169
189
|
|
|
170
|
-
- [`examples/kvstore.py`](
|
|
171
|
-
- [`examples/list.py`](
|
|
172
|
-
- [`examples/queue.py`](
|
|
173
|
-
- [`examples/vector.py`](
|
|
174
|
-
- [`examples/fts.py`](
|
|
175
|
-
- [`examples/graph.py`](
|
|
176
|
-
- [`examples/pubsub.py`](
|
|
177
|
-
- [`examples/
|
|
178
|
-
- [`examples/
|
|
190
|
+
- [`examples/kvstore.py`](examples/kvstore.py): A comprehensive demo of the namespaced dictionary feature.
|
|
191
|
+
- [`examples/list.py`](examples/list.py): Shows the full capabilities of the persistent list, including slicing and in-place updates.
|
|
192
|
+
- [`examples/queue.py`](examples/queue.py): A practical example of using the persistent priority queue for task management.
|
|
193
|
+
- [`examples/vector.py`](examples/vector.py): Demonstrates how to index and search vector embeddings, including upserts.
|
|
194
|
+
- [`examples/fts.py`](examples/fts.py): A detailed look at full-text search, including targeted searches on specific metadata fields.
|
|
195
|
+
- [`examples/graph.py`](examples/graph.py): Shows how to create relationships between documents and perform multi-hop graph traversals.
|
|
196
|
+
- [`examples/pubsub.py`](examples/pubsub.py): A demonstration of the synchronous, thread-safe publish/subscribe system in a single process.
|
|
197
|
+
- [`examples/publisher.py`](examples/publisher.py) and [`examples/subscriber.py`](examples/subscriber.py): A pair of examples demonstrating inter-process message passing with the publish/subscribe system.
|
|
198
|
+
- [`examples/cache.py`](examples/cache.py): A practical example of using a dictionary with TTL as a cache for API calls.
|
|
199
|
+
- [`examples/rerank.py`](examples/rerank.py): Shows how to combine results from vector and text search for more refined results.
|
|
179
200
|
|
|
180
201
|
## Roadmap
|
|
181
202
|
|
|
@@ -183,10 +204,9 @@ These are some of the features and improvements planned for future releases:
|
|
|
183
204
|
|
|
184
205
|
- **Fuzzy search**: Implement fuzzy matching capabilities for text search.
|
|
185
206
|
- **Faster ANN**: Explore integrating more advanced ANN libraries like `faiss` for improved vector search performance.
|
|
186
|
-
- **Improved Pub/Sub**: Fan-out implementation with a more Pythonic API.
|
|
187
207
|
- **Async API**: Comprehensive async support with on-demand wrappers for all collections.
|
|
188
208
|
|
|
189
|
-
Check out the [roadmap](
|
|
209
|
+
Check out the [roadmap](roadmap.md) for a detailed list of upcoming features and design ideas.
|
|
190
210
|
|
|
191
211
|
## License
|
|
192
212
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
beaver/__init__.py,sha256=-z5Gj6YKMOswpJOOn5Gej8z5i6k3c0Xs00DIYLA-bMI,75
|
|
2
|
+
beaver/channels.py,sha256=6Fr6uyp_1TtVzNzQobgCa_-c8KS285Z2fyC7OzUOd34,6611
|
|
3
|
+
beaver/collections.py,sha256=R4bVmP37s_ZnCkb3Jdck2H8dRvD3-ihFV4mEsA14YeE,15716
|
|
4
|
+
beaver/core.py,sha256=l5hI55vc2VlF1b_a6CP7ZP5r7H-MQdTNV4zr2lSumcs,7864
|
|
5
|
+
beaver/dicts.py,sha256=y4z632XKWU29ekP_vdFSOP-MAG9Z8b79kBEHA88gO7E,4463
|
|
6
|
+
beaver/lists.py,sha256=jFlDWwyaYycG0ZFVm58rMChefUaVZhaP1UeQ-hVo3Sg,9082
|
|
7
|
+
beaver/queues.py,sha256=WKpBzlXr9Hp_rOKEs_Y1Tjyj_hWx6ql1uBRKBV7rw8w,2780
|
|
8
|
+
beaver_db-0.9.0.dist-info/licenses/LICENSE,sha256=1xrIY5JnMk_QDQzsqmVzPIIyCgZAkWCC8kF2Ddo1UT0,1071
|
|
9
|
+
beaver_db-0.9.0.dist-info/METADATA,sha256=Fd_Qvcs5a_wbCVMCvfmxOXAKBX4FbtQKJwrWwFAxjrE,9732
|
|
10
|
+
beaver_db-0.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
11
|
+
beaver_db-0.9.0.dist-info/top_level.txt,sha256=FxA4XnX5Qm5VudEXCduFriqi4dQmDWpQ64d7g69VQKI,7
|
|
12
|
+
beaver_db-0.9.0.dist-info/RECORD,,
|
beaver_db-0.8.0.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
beaver/__init__.py,sha256=-z5Gj6YKMOswpJOOn5Gej8z5i6k3c0Xs00DIYLA-bMI,75
|
|
2
|
-
beaver/channels.py,sha256=2lem2_yEFMc7cjdSx4FbFZQOaeT-HtbSvon3WYYRYzY,1952
|
|
3
|
-
beaver/collections.py,sha256=R4bVmP37s_ZnCkb3Jdck2H8dRvD3-ihFV4mEsA14YeE,15716
|
|
4
|
-
beaver/core.py,sha256=GpQ5HVJd2yBGq_RGC6TKlhRpGvNdFg88c59oAkltgqY,7904
|
|
5
|
-
beaver/dicts.py,sha256=y4z632XKWU29ekP_vdFSOP-MAG9Z8b79kBEHA88gO7E,4463
|
|
6
|
-
beaver/lists.py,sha256=jFlDWwyaYycG0ZFVm58rMChefUaVZhaP1UeQ-hVo3Sg,9082
|
|
7
|
-
beaver/queues.py,sha256=WKpBzlXr9Hp_rOKEs_Y1Tjyj_hWx6ql1uBRKBV7rw8w,2780
|
|
8
|
-
beaver_db-0.8.0.dist-info/licenses/LICENSE,sha256=1xrIY5JnMk_QDQzsqmVzPIIyCgZAkWCC8kF2Ddo1UT0,1071
|
|
9
|
-
beaver_db-0.8.0.dist-info/METADATA,sha256=hB3ZWilwbPhfq64laoxiwxx99KfT-WIFOk1Nj2jK28c,9833
|
|
10
|
-
beaver_db-0.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
11
|
-
beaver_db-0.8.0.dist-info/top_level.txt,sha256=FxA4XnX5Qm5VudEXCduFriqi4dQmDWpQ64d7g69VQKI,7
|
|
12
|
-
beaver_db-0.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|