wappa 0.1.4__py3-none-any.whl → 0.1.6__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 wappa might be problematic. Click here for more details.
- wappa/persistence/json/cache_adapters.py +1 -1
- wappa/persistence/json/json_cache_factory.py +2 -2
- wappa/persistence/memory/cache_adapters.py +1 -1
- wappa/persistence/memory/memory_cache_factory.py +2 -2
- {wappa-0.1.4.dist-info → wappa-0.1.6.dist-info}/METADATA +7 -25
- {wappa-0.1.4.dist-info → wappa-0.1.6.dist-info}/RECORD +9 -9
- {wappa-0.1.4.dist-info → wappa-0.1.6.dist-info}/WHEEL +0 -0
- {wappa-0.1.4.dist-info → wappa-0.1.6.dist-info}/entry_points.txt +0 -0
- {wappa-0.1.4.dist-info → wappa-0.1.6.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,7 +9,7 @@ from typing import Any
|
|
|
9
9
|
|
|
10
10
|
from pydantic import BaseModel
|
|
11
11
|
|
|
12
|
-
from
|
|
12
|
+
from ...domain.interfaces.cache_interface import ICache
|
|
13
13
|
from .handlers.state_handler import JSONStateHandler
|
|
14
14
|
from .handlers.table_handler import JSONTable
|
|
15
15
|
from .handlers.user_handler import JSONUser
|
|
@@ -5,8 +5,8 @@ Creates JSON-backed cache instances using file-based storage
|
|
|
5
5
|
with ICache adapters for uniform interface.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
from
|
|
9
|
-
from
|
|
8
|
+
from ...domain.interfaces.cache_factory import ICacheFactory
|
|
9
|
+
from ...domain.interfaces.cache_interface import ICache
|
|
10
10
|
from .cache_adapters import (
|
|
11
11
|
JSONStateCacheAdapter,
|
|
12
12
|
JSONTableCacheAdapter,
|
|
@@ -9,7 +9,7 @@ from typing import Any
|
|
|
9
9
|
|
|
10
10
|
from pydantic import BaseModel
|
|
11
11
|
|
|
12
|
-
from
|
|
12
|
+
from ...domain.interfaces.cache_interface import ICache
|
|
13
13
|
from .handlers.state_handler import MemoryStateHandler
|
|
14
14
|
from .handlers.table_handler import MemoryTable
|
|
15
15
|
from .handlers.user_handler import MemoryUser
|
|
@@ -5,8 +5,8 @@ Creates memory-backed cache instances using in-memory storage
|
|
|
5
5
|
with ICache adapters for uniform interface.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
from
|
|
9
|
-
from
|
|
8
|
+
from ...domain.interfaces.cache_factory import ICacheFactory
|
|
9
|
+
from ...domain.interfaces.cache_interface import ICache
|
|
10
10
|
from .cache_adapters import (
|
|
11
11
|
MemoryStateCacheAdapter,
|
|
12
12
|
MemoryTableCacheAdapter,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wappa
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: Open Source Framework to develop smart Workflows, Agents and full chat applications through WhatsApp
|
|
5
5
|
Project-URL: Homepage, https://wappa.mimeia.com
|
|
6
6
|
Project-URL: Documentation, https://wappa.mimeia.com/docs
|
|
@@ -225,37 +225,19 @@ Requires-Dist: aiofiles>=24.1.0
|
|
|
225
225
|
Requires-Dist: aiohttp>=3.11.0
|
|
226
226
|
Requires-Dist: fastapi>=0.115.0
|
|
227
227
|
Requires-Dist: hypercorn>=0.17.0
|
|
228
|
+
Requires-Dist: numpy>=2.2.0
|
|
229
|
+
Requires-Dist: openai>=1.69.0
|
|
230
|
+
Requires-Dist: opencv-python-headless>=4.11.0
|
|
231
|
+
Requires-Dist: pillow>=11.1.0
|
|
228
232
|
Requires-Dist: pydantic-settings>=2.10.0
|
|
229
233
|
Requires-Dist: pydantic>=2.8.0
|
|
230
234
|
Requires-Dist: python-dotenv>=1.0.0
|
|
231
235
|
Requires-Dist: python-multipart>=0.0.6
|
|
236
|
+
Requires-Dist: redis>=5.2.0
|
|
232
237
|
Requires-Dist: rich>=13.0.0
|
|
238
|
+
Requires-Dist: sqlmodel>=0.0.24
|
|
233
239
|
Requires-Dist: typer>=0.9.0
|
|
234
240
|
Requires-Dist: uvicorn[standard]>=0.24.0
|
|
235
|
-
Provides-Extra: ai
|
|
236
|
-
Requires-Dist: numpy>=2.2.0; extra == 'ai'
|
|
237
|
-
Requires-Dist: openai>=1.69.0; extra == 'ai'
|
|
238
|
-
Provides-Extra: all
|
|
239
|
-
Requires-Dist: numpy>=2.2.0; extra == 'all'
|
|
240
|
-
Requires-Dist: openai>=1.69.0; extra == 'all'
|
|
241
|
-
Requires-Dist: opencv-python-headless>=4.11.0; extra == 'all'
|
|
242
|
-
Requires-Dist: pillow>=11.1.0; extra == 'all'
|
|
243
|
-
Requires-Dist: redis>=5.2.0; extra == 'all'
|
|
244
|
-
Requires-Dist: sqlmodel>=0.0.24; extra == 'all'
|
|
245
|
-
Provides-Extra: database
|
|
246
|
-
Requires-Dist: sqlmodel>=0.0.24; extra == 'database'
|
|
247
|
-
Provides-Extra: dev
|
|
248
|
-
Requires-Dist: black>=25.1.0; extra == 'dev'
|
|
249
|
-
Requires-Dist: mypy>=1.0.0; extra == 'dev'
|
|
250
|
-
Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
|
|
251
|
-
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'dev'
|
|
252
|
-
Requires-Dist: pytest>=8.4.0; extra == 'dev'
|
|
253
|
-
Requires-Dist: ruff>=0.9.0; extra == 'dev'
|
|
254
|
-
Provides-Extra: media
|
|
255
|
-
Requires-Dist: opencv-python-headless>=4.11.0; extra == 'media'
|
|
256
|
-
Requires-Dist: pillow>=11.1.0; extra == 'media'
|
|
257
|
-
Provides-Extra: redis
|
|
258
|
-
Requires-Dist: redis>=5.2.0; extra == 'redis'
|
|
259
241
|
Description-Content-Type: text/markdown
|
|
260
242
|
|
|
261
243
|
# wappa
|
|
@@ -99,8 +99,8 @@ wappa/messaging/whatsapp/models/specialized_models.py,sha256=jus5IH5yKje2kph78UT
|
|
|
99
99
|
wappa/messaging/whatsapp/models/template_models.py,sha256=rapAwbvJeJ4pqeDtSRyhoMZuVgiy-WFTmVVZCrcrpLA,8580
|
|
100
100
|
wappa/persistence/cache_factory.py,sha256=428eCUWbo37fsSOPGCuMvjwqTn3FedCIeHBYf6oYKuA,2832
|
|
101
101
|
wappa/persistence/json/__init__.py,sha256=YWGnYXGXzljpM6Vhgb9qC0En_ffg3g63jxflIIddxMI,371
|
|
102
|
-
wappa/persistence/json/cache_adapters.py,sha256=
|
|
103
|
-
wappa/persistence/json/json_cache_factory.py,sha256=
|
|
102
|
+
wappa/persistence/json/cache_adapters.py,sha256=mOOaERqeTsPmh4E-6W-Q36XmAEufUfT6b2SypbZt2FE,10253
|
|
103
|
+
wappa/persistence/json/json_cache_factory.py,sha256=dRM15u1gI-oiNsDRfTgggyEtZjAYfXweBliAdmHpS4c,2345
|
|
104
104
|
wappa/persistence/json/storage_manager.py,sha256=Coi_KdXRotW8qtADsr7O_7JqREQhyCjom9jz9gAH5I8,9094
|
|
105
105
|
wappa/persistence/json/handlers/__init__.py,sha256=idUBFqDp7OHCUKxz3w5gqBEms2QABjfvrnAJVlu08Dk,34
|
|
106
106
|
wappa/persistence/json/handlers/state_handler.py,sha256=RGoqtRkUeapVCAkl-rrCS8PumOg0aUT_KOcRNJQMlR8,7442
|
|
@@ -111,8 +111,8 @@ wappa/persistence/json/handlers/utils/file_manager.py,sha256=AixndHURExCvL1x_Sfh
|
|
|
111
111
|
wappa/persistence/json/handlers/utils/key_factory.py,sha256=8_8TyTxrtC7W_4PPmQbNF8r1FGV9cSpiiSocOutdIVc,353
|
|
112
112
|
wappa/persistence/json/handlers/utils/serialization.py,sha256=h4aYy2_GfL4WZhd99V-_Wd9nJhi7AjuFhMd-aQmIb3o,3748
|
|
113
113
|
wappa/persistence/memory/__init__.py,sha256=imjVX4o6JuH2LS7ndZHBc0KgLFAYnygFSjscdqIe2W4,385
|
|
114
|
-
wappa/persistence/memory/cache_adapters.py,sha256=
|
|
115
|
-
wappa/persistence/memory/memory_cache_factory.py,sha256=
|
|
114
|
+
wappa/persistence/memory/cache_adapters.py,sha256=AAuD6u-zHZ6LfDI4RKG8De3OnpzDzI4JBlbyk5ML-q8,10281
|
|
115
|
+
wappa/persistence/memory/memory_cache_factory.py,sha256=fEz2m0KDzJW2hnO7xQK4F3RtgvCFWVFDDYzN5fgynkI,2493
|
|
116
116
|
wappa/persistence/memory/storage_manager.py,sha256=SzM8gb9SFd8VvTSU5CU3whVLAixifHiYxzXYaANbPJw,7582
|
|
117
117
|
wappa/persistence/memory/handlers/__init__.py,sha256=SXciLGkttBZWhnSxUbyI3E-iAN71wPD0emJzUh0fgIA,36
|
|
118
118
|
wappa/persistence/memory/handlers/state_handler.py,sha256=jV5i3Vj4vwPMZK05CLveN4IhNKqS7TLYr-Z_O1Ochs0,7456
|
|
@@ -204,8 +204,8 @@ wappa/webhooks/whatsapp/message_types/system.py,sha256=lrAwSTNokxjDkgCg7Hg33eb8s
|
|
|
204
204
|
wappa/webhooks/whatsapp/message_types/text.py,sha256=u3gXGMNpJFDdaJWA0vhBGFTyAEzI2fyqvtaVvZwzAhA,14688
|
|
205
205
|
wappa/webhooks/whatsapp/message_types/unsupported.py,sha256=5GxVcNNu2X5H1gZvze3iNNrZUrUs2DxmiL3bruS38RI,9532
|
|
206
206
|
wappa/webhooks/whatsapp/message_types/video.py,sha256=NR081ZyNwxajmCbOw-LvPadU97Qksghxr_TWhWsZEz0,11271
|
|
207
|
-
wappa-0.1.
|
|
208
|
-
wappa-0.1.
|
|
209
|
-
wappa-0.1.
|
|
210
|
-
wappa-0.1.
|
|
211
|
-
wappa-0.1.
|
|
207
|
+
wappa-0.1.6.dist-info/METADATA,sha256=6KVqMnaPVFEUItg4HulVCPWxRLi85NW_NCPRGPd8bWA,15758
|
|
208
|
+
wappa-0.1.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
209
|
+
wappa-0.1.6.dist-info/entry_points.txt,sha256=KzfFZSK3VpWP4M-gpgh9AdKbhh4kOwiOI3q32e3NLHs,45
|
|
210
|
+
wappa-0.1.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
211
|
+
wappa-0.1.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|