mdb-engine 0.6.0__py3-none-any.whl → 0.7.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.
- mdb_engine/__init__.py +7 -13
- mdb_engine/auth/__init__.py +9 -0
- mdb_engine/auth/csrf.py +493 -144
- mdb_engine/auth/provider.py +10 -0
- mdb_engine/auth/shared_users.py +41 -0
- mdb_engine/auth/users.py +2 -1
- mdb_engine/auth/websocket_tickets.py +307 -0
- mdb_engine/cli/main.py +1 -1
- mdb_engine/core/app_registration.py +10 -0
- mdb_engine/core/engine.py +687 -38
- mdb_engine/core/manifest.py +14 -0
- mdb_engine/core/ray_integration.py +4 -4
- mdb_engine/core/service_initialization.py +63 -7
- mdb_engine/core/types.py +1 -0
- mdb_engine/database/connection.py +6 -3
- mdb_engine/database/scoped_wrapper.py +3 -3
- mdb_engine/indexes/manager.py +3 -3
- mdb_engine/observability/health.py +7 -7
- mdb_engine/routing/README.md +9 -2
- mdb_engine/routing/websockets.py +453 -74
- {mdb_engine-0.6.0.dist-info → mdb_engine-0.7.1.dist-info}/METADATA +128 -4
- {mdb_engine-0.6.0.dist-info → mdb_engine-0.7.1.dist-info}/RECORD +26 -25
- {mdb_engine-0.6.0.dist-info → mdb_engine-0.7.1.dist-info}/WHEEL +0 -0
- {mdb_engine-0.6.0.dist-info → mdb_engine-0.7.1.dist-info}/entry_points.txt +0 -0
- {mdb_engine-0.6.0.dist-info → mdb_engine-0.7.1.dist-info}/licenses/LICENSE +0 -0
- {mdb_engine-0.6.0.dist-info → mdb_engine-0.7.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mdb-engine
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: MongoDB Engine
|
|
5
5
|
Home-page: https://github.com/ranfysvalle02/mdb-engine
|
|
6
6
|
Author: Fabian Valle
|
|
@@ -51,6 +51,7 @@ Requires-Dist: pytest-mock>=3.11.0; extra == "test"
|
|
|
51
51
|
Requires-Dist: pytest-timeout>=2.1.0; extra == "test"
|
|
52
52
|
Requires-Dist: pytest-xdist>=3.3.0; extra == "test"
|
|
53
53
|
Requires-Dist: testcontainers>=3.7.0; extra == "test"
|
|
54
|
+
Requires-Dist: nest-asyncio>=1.5.0; extra == "test"
|
|
54
55
|
Provides-Extra: dev
|
|
55
56
|
Requires-Dist: ruff<0.6.0,>=0.4.0; extra == "dev"
|
|
56
57
|
Requires-Dist: semgrep>=1.50.0; extra == "dev"
|
|
@@ -71,6 +72,18 @@ Dynamic: requires-python
|
|
|
71
72
|
[](https://www.python.org/downloads/)
|
|
72
73
|
[](https://opensource.org/licenses/AGPL-3.0)
|
|
73
74
|
|
|
75
|
+
## 🎉 What's New in v0.7.0
|
|
76
|
+
|
|
77
|
+
**FastAPI Native WebSocket Support**: MDB-Engine now uses FastAPI's `APIRouter` approach for WebSocket registration in both single-app and multi-app modes. This provides:
|
|
78
|
+
|
|
79
|
+
- ✅ **Full FastAPI Feature Support**: Dependency injection, OpenAPI documentation, request/response models
|
|
80
|
+
- ✅ **Consistency**: Same registration pattern across single-app and multi-app modes
|
|
81
|
+
- ✅ **Best Practices**: Follows FastAPI's recommended WebSocket registration patterns
|
|
82
|
+
- ✅ **Better Maintainability**: Uses FastAPI abstractions instead of low-level Starlette APIs
|
|
83
|
+
- ✅ **Route Priority**: WebSocket routes registered before mounted apps ensure proper routing
|
|
84
|
+
|
|
85
|
+
**Value**: This change ensures WebSocket endpoints benefit from all FastAPI features, making your code more maintainable and consistent with FastAPI best practices.
|
|
86
|
+
|
|
74
87
|
---
|
|
75
88
|
|
|
76
89
|
## 🎯 manifest.json: The Key to Everything
|
|
@@ -106,10 +119,100 @@ pip install mdb-engine
|
|
|
106
119
|
|
|
107
120
|
---
|
|
108
121
|
|
|
122
|
+
## ⚠️ Prerequisites: MongoDB Must Be Running
|
|
123
|
+
|
|
124
|
+
**IMPORTANT**: MDB-Engine requires a running MongoDB instance. Make sure MongoDB is running before starting your application.
|
|
125
|
+
|
|
126
|
+
### Quick MongoDB Setup Options
|
|
127
|
+
|
|
128
|
+
#### Option 1: Docker Compose (Recommended for Development)
|
|
129
|
+
|
|
130
|
+
Create a `docker-compose.yml` file:
|
|
131
|
+
|
|
132
|
+
```yaml
|
|
133
|
+
services:
|
|
134
|
+
mongodb:
|
|
135
|
+
image: mongo:7.0
|
|
136
|
+
container_name: mdb_mongodb
|
|
137
|
+
ports:
|
|
138
|
+
- "27017:27017"
|
|
139
|
+
volumes:
|
|
140
|
+
- mongodb_data:/data/db
|
|
141
|
+
healthcheck:
|
|
142
|
+
test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')"]
|
|
143
|
+
interval: 10s
|
|
144
|
+
timeout: 5s
|
|
145
|
+
retries: 5
|
|
146
|
+
|
|
147
|
+
volumes:
|
|
148
|
+
mongodb_data:
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
Start MongoDB:
|
|
152
|
+
```bash
|
|
153
|
+
docker-compose up -d mongodb
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
#### Option 2: Docker Run (Quick Start)
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
docker run -d \
|
|
160
|
+
--name mdb_mongodb \
|
|
161
|
+
-p 27017:27017 \
|
|
162
|
+
-v mongodb_data:/data/db \
|
|
163
|
+
mongo:7.0
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
#### Option 3: Local MongoDB Installation
|
|
167
|
+
|
|
168
|
+
**macOS (Homebrew):**
|
|
169
|
+
```bash
|
|
170
|
+
brew tap mongodb/brew
|
|
171
|
+
brew install mongodb-community
|
|
172
|
+
brew services start mongodb-community
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
**Linux (Ubuntu/Debian):**
|
|
176
|
+
```bash
|
|
177
|
+
sudo apt-get install -y mongodb
|
|
178
|
+
sudo systemctl start mongodb
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
**Windows:**
|
|
182
|
+
Download and install from [MongoDB Download Center](https://www.mongodb.com/try/download/community)
|
|
183
|
+
|
|
184
|
+
#### Option 4: MongoDB Atlas (Cloud)
|
|
185
|
+
|
|
186
|
+
1. Sign up at [MongoDB Atlas](https://www.mongodb.com/cloud/atlas)
|
|
187
|
+
2. Create a free cluster
|
|
188
|
+
3. Get your connection string: `mongodb+srv://user:password@cluster.mongodb.net/`
|
|
189
|
+
|
|
190
|
+
### Verify MongoDB is Running
|
|
191
|
+
|
|
192
|
+
```bash
|
|
193
|
+
# Check if MongoDB is accessible
|
|
194
|
+
mongosh "mongodb://localhost:27017" --eval "db.adminCommand('ping')"
|
|
195
|
+
|
|
196
|
+
# Or using curl (if mongosh not available)
|
|
197
|
+
curl http://localhost:27017
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
**Expected output:** `{ "ok": 1 }` or connection successful
|
|
201
|
+
|
|
202
|
+
### Common Connection Strings
|
|
203
|
+
|
|
204
|
+
- **Local MongoDB (default)**: `mongodb://localhost:27017`
|
|
205
|
+
- **Docker MongoDB**: `mongodb://localhost:27017` (if port mapped)
|
|
206
|
+
- **MongoDB Atlas**: `mongodb+srv://user:password@cluster.mongodb.net/dbname`
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
109
210
|
## 30-Second Quick Start: Build a Todo List API
|
|
110
211
|
|
|
111
212
|
Let's build a complete CRUD todo list app in 3 steps!
|
|
112
213
|
|
|
214
|
+
> **⚠️ Before you start**: Make sure MongoDB is running! See [Prerequisites](#-prerequisites-mongodb-must-be-running) section above.
|
|
215
|
+
|
|
113
216
|
### Step 1: Create `manifest.json`
|
|
114
217
|
|
|
115
218
|
```json
|
|
@@ -144,8 +247,9 @@ from mdb_engine import MongoDBEngine
|
|
|
144
247
|
from mdb_engine.dependencies import get_scoped_db
|
|
145
248
|
|
|
146
249
|
# Initialize engine
|
|
250
|
+
# ⚠️ Make sure MongoDB is running at mongodb://localhost:27017
|
|
147
251
|
engine = MongoDBEngine(
|
|
148
|
-
mongo_uri="mongodb://localhost:27017",
|
|
252
|
+
mongo_uri="mongodb://localhost:27017", # Change if using Docker/Atlas
|
|
149
253
|
db_name="my_database"
|
|
150
254
|
)
|
|
151
255
|
|
|
@@ -226,8 +330,8 @@ async def delete_todo(todo_id: str, db=Depends(get_scoped_db)):
|
|
|
226
330
|
### Step 3: Run It!
|
|
227
331
|
|
|
228
332
|
```bash
|
|
229
|
-
#
|
|
230
|
-
|
|
333
|
+
# ⚠️ IMPORTANT: Make sure MongoDB is running first!
|
|
334
|
+
# See "Prerequisites: MongoDB Must Be Running" section above
|
|
231
335
|
|
|
232
336
|
# Install dependencies
|
|
233
337
|
pip install mdb-engine fastapi uvicorn
|
|
@@ -236,6 +340,20 @@ pip install mdb-engine fastapi uvicorn
|
|
|
236
340
|
uvicorn app:app --reload
|
|
237
341
|
```
|
|
238
342
|
|
|
343
|
+
**If MongoDB is not running**, you'll see connection errors. Make sure MongoDB is started before running your app!
|
|
344
|
+
|
|
345
|
+
**Quick MongoDB check:**
|
|
346
|
+
```bash
|
|
347
|
+
# Option 1: Docker Compose
|
|
348
|
+
docker-compose up -d mongodb
|
|
349
|
+
|
|
350
|
+
# Option 2: Docker Run
|
|
351
|
+
docker run -d --name mdb_mongodb -p 27017:27017 mongo:7.0
|
|
352
|
+
|
|
353
|
+
# Option 3: Local MongoDB
|
|
354
|
+
mongod # or brew services start mongodb-community (macOS)
|
|
355
|
+
```
|
|
356
|
+
|
|
239
357
|
**Test your API:**
|
|
240
358
|
```bash
|
|
241
359
|
# Create a todo
|
|
@@ -405,9 +523,14 @@ Clone and run:
|
|
|
405
523
|
```bash
|
|
406
524
|
git clone https://github.com/ranfysvalle02/mdb-engine.git
|
|
407
525
|
cd mdb-engine/examples/basic/chit_chat
|
|
526
|
+
|
|
527
|
+
# Examples include docker-compose.yml with MongoDB
|
|
528
|
+
# This will start both MongoDB and your app
|
|
408
529
|
docker-compose up --build
|
|
409
530
|
```
|
|
410
531
|
|
|
532
|
+
**Note**: All examples include `docker-compose.yml` files that start MongoDB automatically. If running examples without Docker, make sure MongoDB is running first!
|
|
533
|
+
|
|
411
534
|
### Basic Examples
|
|
412
535
|
|
|
413
536
|
| Example | Description |
|
|
@@ -437,6 +560,7 @@ from pathlib import Path
|
|
|
437
560
|
from fastapi import FastAPI
|
|
438
561
|
from mdb_engine import MongoDBEngine
|
|
439
562
|
|
|
563
|
+
# ⚠️ Make sure MongoDB is running before initializing the engine
|
|
440
564
|
app = FastAPI()
|
|
441
565
|
engine = MongoDBEngine(mongo_uri="mongodb://localhost:27017", db_name="my_database")
|
|
442
566
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
mdb_engine/README.md,sha256=T3EFGcPopY9LslYW3lxgG3hohWkAOmBNbYG0FDMUJiY,3502
|
|
2
|
-
mdb_engine/__init__.py,sha256=
|
|
2
|
+
mdb_engine/__init__.py,sha256=d2oenqa95hRBwXIVPmKBE8lo61ojOkxfcuuIzgSxLXc,3655
|
|
3
3
|
mdb_engine/config.py,sha256=DTAyxfKB8ogyI0v5QR9Y-SJOgXQr_eDBCKxNBSqEyLc,7269
|
|
4
4
|
mdb_engine/constants.py,sha256=eaotvW57TVOg7rRbLziGrVNoP7adgw_G9iVByHezc_A,7837
|
|
5
5
|
mdb_engine/dependencies.py,sha256=MJuYQhZ9ZGzXlip1ha5zba9Rvn04HDPWahJFJH81Q2s,14107
|
|
6
6
|
mdb_engine/exceptions.py,sha256=NkBSdTBNP9bVTtI6w6mAoEfeVZDq-Bg7vCF2L26ZDZo,8442
|
|
7
7
|
mdb_engine/auth/ARCHITECTURE.md,sha256=JXZsjEIpNz4Szk18KaOiEabhEuz1pmYWXQRN-EJEHDM,4076
|
|
8
8
|
mdb_engine/auth/README.md,sha256=IVlUOat96V3yM6wk4T-u4GxJ4-WF05eBSJBlvIexyBo,37285
|
|
9
|
-
mdb_engine/auth/__init__.py,sha256=
|
|
9
|
+
mdb_engine/auth/__init__.py,sha256=JJZjCdlDbPffSlFPHfd5zp-RcW2vDlk6wVBVhAmxhmY,6287
|
|
10
10
|
mdb_engine/auth/audit.py,sha256=UQ0Bj5Zxp5et9A21YZCVkUjaABFqO1CXaMrWxNcdxm8,17352
|
|
11
11
|
mdb_engine/auth/base.py,sha256=4E3XkbruZLG9lc6aC56w0ypjnfiR5RbtjQKwn4am8to,7418
|
|
12
12
|
mdb_engine/auth/casbin_factory.py,sha256=oZLHIPyVA1hiho__ledRVDoBisaZgo96WZIKa0-kQic,16610
|
|
@@ -14,7 +14,7 @@ mdb_engine/auth/casbin_models.py,sha256=7XtFmRBhhjw1nKprnluvjyJoTj5fzdPeQwVvo6fI
|
|
|
14
14
|
mdb_engine/auth/config_defaults.py,sha256=1YI_hIHuTiEXpkEYMcufNHdLr1oxPiJylg3CKrJCSGY,2012
|
|
15
15
|
mdb_engine/auth/config_helpers.py,sha256=Qharb2YagLOKDGtE7XhYRDbBoQ_KGykrcIKrsOwWIJ4,6303
|
|
16
16
|
mdb_engine/auth/cookie_utils.py,sha256=glsSocSmy-_wRTLro0xy17s84oBk3HPDPL-FVXl7Rv8,5302
|
|
17
|
-
mdb_engine/auth/csrf.py,sha256=
|
|
17
|
+
mdb_engine/auth/csrf.py,sha256=_AsBIhrJiL2SkAfdESHrzyc-QA52gajoI6d5AIwB4oA,48674
|
|
18
18
|
mdb_engine/auth/decorators.py,sha256=LkVVEuRrT0Iz8EwctN14BEi3fSV-xtN6DaGXgtbiYYo,12287
|
|
19
19
|
mdb_engine/auth/dependencies.py,sha256=JB1iYvZJgTR6gcaiGe_GJFCS6NdUKMxWBZRv6vVxnzw,27112
|
|
20
20
|
mdb_engine/auth/helpers.py,sha256=BCrid985cYh-3h5ZMUV9TES0q40uJXio4oYKQZta7KA,1970
|
|
@@ -22,19 +22,20 @@ mdb_engine/auth/integration.py,sha256=6PMjGKS71bl-OrwxG_kksY1069jB9nNZZNFs2C2H2q
|
|
|
22
22
|
mdb_engine/auth/jwt.py,sha256=HKcGOaza62zdIQx0mHLV9zBSibCLlrM6NnCXg1HCGUc,7206
|
|
23
23
|
mdb_engine/auth/middleware.py,sha256=e21eZQYrgNPChb0uL6Uw1hV2Rzw92D9ZWAkqWv4nHSE,10866
|
|
24
24
|
mdb_engine/auth/oso_factory.py,sha256=EwRgN1OjjcwZPU4In35Zwrc5Qsm_aCUjyR3nxNqqwiw,11264
|
|
25
|
-
mdb_engine/auth/provider.py,sha256=
|
|
25
|
+
mdb_engine/auth/provider.py,sha256=_g0Jmbe4YHyXtNhwMtNYNP3xY33zGX5KBEvJtmtLBko,26771
|
|
26
26
|
mdb_engine/auth/rate_limiter.py,sha256=l3EYZE1Kz9yVfZwNrKq_1AgdD7GXB1WOLSqqGQVSSgA,15808
|
|
27
27
|
mdb_engine/auth/restrictions.py,sha256=tOyQBO_w0bK9zmTsOPZf9cbvh4oITvpNfSxIXt-XrcU,8824
|
|
28
28
|
mdb_engine/auth/session_manager.py,sha256=ywWJjTarm-obgJ3zO3s-1cdqEYe0XrozlY00q_yMJ8I,15396
|
|
29
29
|
mdb_engine/auth/shared_middleware.py,sha256=0iSbRkwdivL1NIj7Gr161qPJiqcw0JafOpZLCkXjT7k,37633
|
|
30
|
-
mdb_engine/auth/shared_users.py,sha256=
|
|
30
|
+
mdb_engine/auth/shared_users.py,sha256=9A0CL7SUf3wEd5GO9mp6rwQY9BanbhOxzToElRyEFec,30869
|
|
31
31
|
mdb_engine/auth/token_lifecycle.py,sha256=Q9S1X2Y6W7Ckt5PvyYXswBRh2Tg9DGpyRv_3Xve7VYQ,6708
|
|
32
32
|
mdb_engine/auth/token_store.py,sha256=-B8j5RH5YEoKsswF4rnMoI51BaxMe4icke3kuehXmcI,9121
|
|
33
|
-
mdb_engine/auth/users.py,sha256=
|
|
33
|
+
mdb_engine/auth/users.py,sha256=y1Wbc6t-oX9JqndvxgXjb4l6IMOpBCmfz4JWia_KTjc,50042
|
|
34
34
|
mdb_engine/auth/utils.py,sha256=YkexCo0xV37mpOJUI32cntRHVOUUS7r19TIMPWHcgpA,27348
|
|
35
35
|
mdb_engine/auth/websocket_sessions.py,sha256=7eFNagY2K3Rp1x7d_cO5JcpT-DrYkc__cmVhl6pAC2M,15081
|
|
36
|
+
mdb_engine/auth/websocket_tickets.py,sha256=VoIArcnQBtYqXRMs-5m7NSvCJB1dEeHrLl7j7yG-H-A,9887
|
|
36
37
|
mdb_engine/cli/__init__.py,sha256=PANRi4THmL34d1mawlqxIrnuItXMdqoMTq5Z1zHd7rM,301
|
|
37
|
-
mdb_engine/cli/main.py,sha256=
|
|
38
|
+
mdb_engine/cli/main.py,sha256=4bWBNgksfRgimolBfivITNvYRMaLTvngeVDcdm7ou6M,811
|
|
38
39
|
mdb_engine/cli/utils.py,sha256=bNRGJgdzxUjXAOVe1aoxWJ5M_IqtAE-eW4pfAkwiDDM,2760
|
|
39
40
|
mdb_engine/cli/commands/__init__.py,sha256=ZSzMhKdV9ILD5EbOSxDV9nURHo1e4bQ0c8AWpqsTEqM,115
|
|
40
41
|
mdb_engine/cli/commands/generate.py,sha256=VEcn7qNQkIPQlLEK3oXUBgYMwD-G0FyomXQcWTtKsbs,17304
|
|
@@ -43,24 +44,24 @@ mdb_engine/cli/commands/show.py,sha256=-PmyMfzzG1HP-PsD9n8LECyxwvlXypNS3g_VDwFg4
|
|
|
43
44
|
mdb_engine/cli/commands/validate.py,sha256=tD8GkhuW8LKsRMUXvBs-wvVWQunw1XFlLvbpE_SQ9Zg,1688
|
|
44
45
|
mdb_engine/core/README.md,sha256=cl19Sw4Hj-BPBsh_FIhPpop_6S88V-KaHC6rnUCx8xw,17039
|
|
45
46
|
mdb_engine/core/__init__.py,sha256=xhnXyXWZ0a2Qr49QrYvLE5QuqSalcpo05hHHRVtDz_M,1952
|
|
46
|
-
mdb_engine/core/app_registration.py,sha256=
|
|
47
|
+
mdb_engine/core/app_registration.py,sha256=w7wjrlNQsEekuDQkG6HM4Z5t00E65baEzncnhRJhWUI,13563
|
|
47
48
|
mdb_engine/core/app_secrets.py,sha256=bo-syg9UUATibNyXEZs-0TTYWG-JaY-2S0yNSGA12n0,10524
|
|
48
49
|
mdb_engine/core/connection.py,sha256=XnwuPG34pJ7kJGJ84T0mhj1UZ6_CLz_9qZf6NRYGIS8,8346
|
|
49
50
|
mdb_engine/core/encryption.py,sha256=RZ5LPF5g28E3ZBn6v1IMw_oas7u9YGFtBcEj8lTi9LM,7515
|
|
50
|
-
mdb_engine/core/engine.py,sha256=
|
|
51
|
+
mdb_engine/core/engine.py,sha256=wSJ99FP3NRUejGCXliwi9fW_pVZPpLjdUMG8FsU5Kms,185252
|
|
51
52
|
mdb_engine/core/index_management.py,sha256=9-r7MIy3JnjQ35sGqsbj8K_I07vAUWtAVgSWC99lJcE,5555
|
|
52
|
-
mdb_engine/core/manifest.py,sha256=
|
|
53
|
-
mdb_engine/core/ray_integration.py,sha256=
|
|
53
|
+
mdb_engine/core/manifest.py,sha256=D3OGRjm1It8dmS3IMoxHckHUerhs5PtcQgPz8o5ZL9w,140785
|
|
54
|
+
mdb_engine/core/ray_integration.py,sha256=csAgICl2g7Plqy4N49MJU1Ca-lr8KZznAouXMMRwhG8,13706
|
|
54
55
|
mdb_engine/core/seeding.py,sha256=c5IhdwlqUf_4Q5FFTAhPLaHPaUr_Txo3z_DUwZmWsFs,6421
|
|
55
|
-
mdb_engine/core/service_initialization.py,sha256=
|
|
56
|
-
mdb_engine/core/types.py,sha256=
|
|
56
|
+
mdb_engine/core/service_initialization.py,sha256=N4varRswExBYahAgPfcPtNhqszOjm0JQ0u7r7mfFyqM,15018
|
|
57
|
+
mdb_engine/core/types.py,sha256=u0LDGE4A3txGDlc9PNoQX8jwVYFjJSw4K5LDnpatsNc,11254
|
|
57
58
|
mdb_engine/database/README.md,sha256=-31mVxBeVQaYsF3AD1-gQbD2NCYVcPjdFoA6sZ6b02Y,19354
|
|
58
59
|
mdb_engine/database/__init__.py,sha256=rrc3eZFli3K2zrvVdDbMBi8YkmoHYzP6JNT0AUBE5VU,981
|
|
59
60
|
mdb_engine/database/abstraction.py,sha256=H6f2WYY80r3onqN6s139uDSyG9W_QpadaoQ84hJuG1E,23438
|
|
60
|
-
mdb_engine/database/connection.py,sha256
|
|
61
|
+
mdb_engine/database/connection.py,sha256=kECICoDDkzICZqrHttvzZURou9ggEXiw0gSxbNkzXpo,15414
|
|
61
62
|
mdb_engine/database/query_validator.py,sha256=5xcGWd3Csk2qgvgJTIccEsc3bV10WNZUEKaI2loLwQs,13239
|
|
62
63
|
mdb_engine/database/resource_limiter.py,sha256=BCIACGexVRVhUcDERQFmg1LW8CPBQos_ZvmfLcJ4Opk,6905
|
|
63
|
-
mdb_engine/database/scoped_wrapper.py,sha256=
|
|
64
|
+
mdb_engine/database/scoped_wrapper.py,sha256=QqK4XVTOXYZAAfbG_BRQbSSXs-5tmq6OgXcLWcMRivM,94709
|
|
64
65
|
mdb_engine/di/__init__.py,sha256=uy9Q153a0QE678TkJ_AEwLuxPY3OyEum2I42_JsuwrI,912
|
|
65
66
|
mdb_engine/di/container.py,sha256=imr_3buWcJDNCEgn4-HTQvBV8DOU7gz8UfghI8FpqUA,7410
|
|
66
67
|
mdb_engine/di/providers.py,sha256=-KPYM4lz8pBxh3J1fuNJyFHwBuqL1vvWk7VgJxew4uo,5927
|
|
@@ -72,27 +73,27 @@ mdb_engine/embeddings/service.py,sha256=3JUqAU-e5TVLOpry5MdP-O4q6tHoqkXA8PyvcxqF
|
|
|
72
73
|
mdb_engine/indexes/README.md,sha256=r7duq-1vtqHhBk1cwoBMYYh_dfTzxiaQaPE3mLB_3JQ,15341
|
|
73
74
|
mdb_engine/indexes/__init__.py,sha256=9QFJ6qo_yD26dZcKyKjj-hhesFpaomBt-mWTtYTQvqc,613
|
|
74
75
|
mdb_engine/indexes/helpers.py,sha256=tJHqDm18jKLrW-P2ofmnUnaf4_-V5xDLjqP_WU8W9MM,4190
|
|
75
|
-
mdb_engine/indexes/manager.py,sha256=
|
|
76
|
+
mdb_engine/indexes/manager.py,sha256=ekrYBfKD-GOBpZMjXIZWSQ7UPLgrD5BINYzVteWkSI8,32508
|
|
76
77
|
mdb_engine/memory/README.md,sha256=uOE4SnPyq8TdoxGrttof5fSj2KSqnrgzUorMCV_1wg0,13624
|
|
77
78
|
mdb_engine/memory/__init__.py,sha256=e4kAYgxd_-WAH8GovTwjEBO9hvASu_kXEupMgksAL-U,1008
|
|
78
79
|
mdb_engine/memory/service.py,sha256=l2bkKVN9AyUjO9K9ykb5BK9dZjs3ns78FJLOD5LajsY,18454
|
|
79
80
|
mdb_engine/observability/README.md,sha256=CMgQaC1H8ESmCitfbhJifz6-XoXH_FPNE4MvuZ-oFas,13085
|
|
80
81
|
mdb_engine/observability/__init__.py,sha256=jjLsrW6Gy2ayrbfLrgHsDB61NxWWkYLHwv0q-N3fxjA,1213
|
|
81
|
-
mdb_engine/observability/health.py,sha256=
|
|
82
|
+
mdb_engine/observability/health.py,sha256=ORjxF_rHYA9vCoxUqel5p0n9g3PLmHsHQn68Q402b6g,9212
|
|
82
83
|
mdb_engine/observability/logging.py,sha256=lJV9iIk-cKb87LEfeMAIP0PPN5vg8-pdRdPzwD29SAM,4039
|
|
83
84
|
mdb_engine/observability/metrics.py,sha256=_5ZlObbYNgEanWvt-n0wIg9QOAnHBpePs_wKysSoJxQ,10728
|
|
84
85
|
mdb_engine/repositories/__init__.py,sha256=048N4QmFLVhJyLdYrWHTTBqujhaF--B8g0z6fUSMuJs,858
|
|
85
86
|
mdb_engine/repositories/base.py,sha256=9AP3baJzJeU2zIhh04TfvP1f3q5HyHdkrSW11xrcY70,8514
|
|
86
87
|
mdb_engine/repositories/mongo.py,sha256=Wg32_6v0KHAHumhz5z8QkoqJRWAMJFA7Y2lYIJ7LZIk,7142
|
|
87
88
|
mdb_engine/repositories/unit_of_work.py,sha256=XvmwGOspEDj4hsfOULPsQKjB1QZqh83TJo6vGV4tiqU,5118
|
|
88
|
-
mdb_engine/routing/README.md,sha256=
|
|
89
|
+
mdb_engine/routing/README.md,sha256=zk-Wux-QpuWWhprfVeiUREv8PEDJZNgh2QblXIa4v4M,14201
|
|
89
90
|
mdb_engine/routing/__init__.py,sha256=reupjHi_RTc2ZBA4AH5XzobAmqy4EQIsfSUcTkFknUM,2438
|
|
90
|
-
mdb_engine/routing/websockets.py,sha256=
|
|
91
|
+
mdb_engine/routing/websockets.py,sha256=jgdLsrSOKyBiY4yzE7XYXV1MOChLw2CIWpT6RDL23hk,51649
|
|
91
92
|
mdb_engine/utils/__init__.py,sha256=lDxQSGqkV4fVw5TWIk6FA6_eey_ZnEtMY0fir3cpAe8,236
|
|
92
93
|
mdb_engine/utils/mongo.py,sha256=Oqtv4tQdpiiZzrilGLEYQPo8Vmh8WsTQypxQs8Of53s,3369
|
|
93
|
-
mdb_engine-0.
|
|
94
|
-
mdb_engine-0.
|
|
95
|
-
mdb_engine-0.
|
|
96
|
-
mdb_engine-0.
|
|
97
|
-
mdb_engine-0.
|
|
98
|
-
mdb_engine-0.
|
|
94
|
+
mdb_engine-0.7.1.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
95
|
+
mdb_engine-0.7.1.dist-info/METADATA,sha256=GXZ-ojykqFCH5RLybnClAHWcNU9da-wXweOyZmH01tM,19695
|
|
96
|
+
mdb_engine-0.7.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
97
|
+
mdb_engine-0.7.1.dist-info/entry_points.txt,sha256=INCbYdFbBzJalwPwxliEzLmPfR57IvQ7RAXG_pn8cL8,48
|
|
98
|
+
mdb_engine-0.7.1.dist-info/top_level.txt,sha256=PH0UEBwTtgkm2vWvC9He_EOMn7hVn_Wg_Jyc0SmeO8k,11
|
|
99
|
+
mdb_engine-0.7.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|