wappa 0.1.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 wappa might be problematic. Click here for more details.

Files changed (211) hide show
  1. wappa/__init__.py +85 -0
  2. wappa/api/__init__.py +1 -0
  3. wappa/api/controllers/__init__.py +10 -0
  4. wappa/api/controllers/webhook_controller.py +441 -0
  5. wappa/api/dependencies/__init__.py +15 -0
  6. wappa/api/dependencies/whatsapp_dependencies.py +220 -0
  7. wappa/api/dependencies/whatsapp_media_dependencies.py +26 -0
  8. wappa/api/middleware/__init__.py +7 -0
  9. wappa/api/middleware/error_handler.py +158 -0
  10. wappa/api/middleware/owner.py +99 -0
  11. wappa/api/middleware/request_logging.py +184 -0
  12. wappa/api/routes/__init__.py +6 -0
  13. wappa/api/routes/health.py +102 -0
  14. wappa/api/routes/webhooks.py +211 -0
  15. wappa/api/routes/whatsapp/__init__.py +15 -0
  16. wappa/api/routes/whatsapp/whatsapp_interactive.py +429 -0
  17. wappa/api/routes/whatsapp/whatsapp_media.py +440 -0
  18. wappa/api/routes/whatsapp/whatsapp_messages.py +195 -0
  19. wappa/api/routes/whatsapp/whatsapp_specialized.py +516 -0
  20. wappa/api/routes/whatsapp/whatsapp_templates.py +431 -0
  21. wappa/api/routes/whatsapp_combined.py +35 -0
  22. wappa/cli/__init__.py +9 -0
  23. wappa/cli/main.py +199 -0
  24. wappa/core/__init__.py +6 -0
  25. wappa/core/config/__init__.py +5 -0
  26. wappa/core/config/settings.py +161 -0
  27. wappa/core/events/__init__.py +41 -0
  28. wappa/core/events/default_handlers.py +642 -0
  29. wappa/core/events/event_dispatcher.py +244 -0
  30. wappa/core/events/event_handler.py +247 -0
  31. wappa/core/events/webhook_factory.py +219 -0
  32. wappa/core/factory/__init__.py +15 -0
  33. wappa/core/factory/plugin.py +68 -0
  34. wappa/core/factory/wappa_builder.py +326 -0
  35. wappa/core/logging/__init__.py +5 -0
  36. wappa/core/logging/context.py +100 -0
  37. wappa/core/logging/logger.py +343 -0
  38. wappa/core/plugins/__init__.py +34 -0
  39. wappa/core/plugins/auth_plugin.py +169 -0
  40. wappa/core/plugins/cors_plugin.py +128 -0
  41. wappa/core/plugins/custom_middleware_plugin.py +182 -0
  42. wappa/core/plugins/database_plugin.py +235 -0
  43. wappa/core/plugins/rate_limit_plugin.py +183 -0
  44. wappa/core/plugins/redis_plugin.py +224 -0
  45. wappa/core/plugins/wappa_core_plugin.py +261 -0
  46. wappa/core/plugins/webhook_plugin.py +253 -0
  47. wappa/core/types.py +108 -0
  48. wappa/core/wappa_app.py +546 -0
  49. wappa/database/__init__.py +18 -0
  50. wappa/database/adapter.py +107 -0
  51. wappa/database/adapters/__init__.py +17 -0
  52. wappa/database/adapters/mysql_adapter.py +187 -0
  53. wappa/database/adapters/postgresql_adapter.py +169 -0
  54. wappa/database/adapters/sqlite_adapter.py +174 -0
  55. wappa/domain/__init__.py +28 -0
  56. wappa/domain/builders/__init__.py +5 -0
  57. wappa/domain/builders/message_builder.py +189 -0
  58. wappa/domain/entities/__init__.py +5 -0
  59. wappa/domain/enums/messenger_platform.py +123 -0
  60. wappa/domain/factories/__init__.py +6 -0
  61. wappa/domain/factories/media_factory.py +450 -0
  62. wappa/domain/factories/message_factory.py +497 -0
  63. wappa/domain/factories/messenger_factory.py +244 -0
  64. wappa/domain/interfaces/__init__.py +32 -0
  65. wappa/domain/interfaces/base_repository.py +94 -0
  66. wappa/domain/interfaces/cache_factory.py +85 -0
  67. wappa/domain/interfaces/cache_interface.py +199 -0
  68. wappa/domain/interfaces/expiry_repository.py +68 -0
  69. wappa/domain/interfaces/media_interface.py +311 -0
  70. wappa/domain/interfaces/messaging_interface.py +523 -0
  71. wappa/domain/interfaces/pubsub_repository.py +151 -0
  72. wappa/domain/interfaces/repository_factory.py +108 -0
  73. wappa/domain/interfaces/shared_state_repository.py +122 -0
  74. wappa/domain/interfaces/state_repository.py +123 -0
  75. wappa/domain/interfaces/tables_repository.py +215 -0
  76. wappa/domain/interfaces/user_repository.py +114 -0
  77. wappa/domain/interfaces/webhooks/__init__.py +1 -0
  78. wappa/domain/models/media_result.py +110 -0
  79. wappa/domain/models/platforms/__init__.py +15 -0
  80. wappa/domain/models/platforms/platform_config.py +104 -0
  81. wappa/domain/services/__init__.py +11 -0
  82. wappa/domain/services/tenant_credentials_service.py +56 -0
  83. wappa/messaging/__init__.py +7 -0
  84. wappa/messaging/whatsapp/__init__.py +1 -0
  85. wappa/messaging/whatsapp/client/__init__.py +5 -0
  86. wappa/messaging/whatsapp/client/whatsapp_client.py +417 -0
  87. wappa/messaging/whatsapp/handlers/__init__.py +13 -0
  88. wappa/messaging/whatsapp/handlers/whatsapp_interactive_handler.py +653 -0
  89. wappa/messaging/whatsapp/handlers/whatsapp_media_handler.py +579 -0
  90. wappa/messaging/whatsapp/handlers/whatsapp_specialized_handler.py +434 -0
  91. wappa/messaging/whatsapp/handlers/whatsapp_template_handler.py +416 -0
  92. wappa/messaging/whatsapp/messenger/__init__.py +5 -0
  93. wappa/messaging/whatsapp/messenger/whatsapp_messenger.py +904 -0
  94. wappa/messaging/whatsapp/models/__init__.py +61 -0
  95. wappa/messaging/whatsapp/models/basic_models.py +65 -0
  96. wappa/messaging/whatsapp/models/interactive_models.py +287 -0
  97. wappa/messaging/whatsapp/models/media_models.py +215 -0
  98. wappa/messaging/whatsapp/models/specialized_models.py +304 -0
  99. wappa/messaging/whatsapp/models/template_models.py +261 -0
  100. wappa/persistence/cache_factory.py +93 -0
  101. wappa/persistence/json/__init__.py +14 -0
  102. wappa/persistence/json/cache_adapters.py +271 -0
  103. wappa/persistence/json/handlers/__init__.py +1 -0
  104. wappa/persistence/json/handlers/state_handler.py +250 -0
  105. wappa/persistence/json/handlers/table_handler.py +263 -0
  106. wappa/persistence/json/handlers/user_handler.py +213 -0
  107. wappa/persistence/json/handlers/utils/__init__.py +1 -0
  108. wappa/persistence/json/handlers/utils/file_manager.py +153 -0
  109. wappa/persistence/json/handlers/utils/key_factory.py +11 -0
  110. wappa/persistence/json/handlers/utils/serialization.py +121 -0
  111. wappa/persistence/json/json_cache_factory.py +76 -0
  112. wappa/persistence/json/storage_manager.py +285 -0
  113. wappa/persistence/memory/__init__.py +14 -0
  114. wappa/persistence/memory/cache_adapters.py +271 -0
  115. wappa/persistence/memory/handlers/__init__.py +1 -0
  116. wappa/persistence/memory/handlers/state_handler.py +250 -0
  117. wappa/persistence/memory/handlers/table_handler.py +280 -0
  118. wappa/persistence/memory/handlers/user_handler.py +213 -0
  119. wappa/persistence/memory/handlers/utils/__init__.py +1 -0
  120. wappa/persistence/memory/handlers/utils/key_factory.py +11 -0
  121. wappa/persistence/memory/handlers/utils/memory_store.py +317 -0
  122. wappa/persistence/memory/handlers/utils/ttl_manager.py +235 -0
  123. wappa/persistence/memory/memory_cache_factory.py +76 -0
  124. wappa/persistence/memory/storage_manager.py +235 -0
  125. wappa/persistence/redis/README.md +699 -0
  126. wappa/persistence/redis/__init__.py +11 -0
  127. wappa/persistence/redis/cache_adapters.py +285 -0
  128. wappa/persistence/redis/ops.py +880 -0
  129. wappa/persistence/redis/redis_cache_factory.py +71 -0
  130. wappa/persistence/redis/redis_client.py +231 -0
  131. wappa/persistence/redis/redis_handler/__init__.py +26 -0
  132. wappa/persistence/redis/redis_handler/state_handler.py +176 -0
  133. wappa/persistence/redis/redis_handler/table.py +158 -0
  134. wappa/persistence/redis/redis_handler/user.py +138 -0
  135. wappa/persistence/redis/redis_handler/utils/__init__.py +12 -0
  136. wappa/persistence/redis/redis_handler/utils/key_factory.py +32 -0
  137. wappa/persistence/redis/redis_handler/utils/serde.py +146 -0
  138. wappa/persistence/redis/redis_handler/utils/tenant_cache.py +268 -0
  139. wappa/persistence/redis/redis_manager.py +189 -0
  140. wappa/processors/__init__.py +6 -0
  141. wappa/processors/base_processor.py +262 -0
  142. wappa/processors/factory.py +550 -0
  143. wappa/processors/whatsapp_processor.py +810 -0
  144. wappa/schemas/__init__.py +6 -0
  145. wappa/schemas/core/__init__.py +71 -0
  146. wappa/schemas/core/base_message.py +499 -0
  147. wappa/schemas/core/base_status.py +322 -0
  148. wappa/schemas/core/base_webhook.py +312 -0
  149. wappa/schemas/core/types.py +253 -0
  150. wappa/schemas/core/webhook_interfaces/__init__.py +48 -0
  151. wappa/schemas/core/webhook_interfaces/base_components.py +293 -0
  152. wappa/schemas/core/webhook_interfaces/universal_webhooks.py +348 -0
  153. wappa/schemas/factory.py +754 -0
  154. wappa/schemas/webhooks/__init__.py +3 -0
  155. wappa/schemas/whatsapp/__init__.py +6 -0
  156. wappa/schemas/whatsapp/base_models.py +285 -0
  157. wappa/schemas/whatsapp/message_types/__init__.py +93 -0
  158. wappa/schemas/whatsapp/message_types/audio.py +350 -0
  159. wappa/schemas/whatsapp/message_types/button.py +267 -0
  160. wappa/schemas/whatsapp/message_types/contact.py +464 -0
  161. wappa/schemas/whatsapp/message_types/document.py +421 -0
  162. wappa/schemas/whatsapp/message_types/errors.py +195 -0
  163. wappa/schemas/whatsapp/message_types/image.py +424 -0
  164. wappa/schemas/whatsapp/message_types/interactive.py +430 -0
  165. wappa/schemas/whatsapp/message_types/location.py +416 -0
  166. wappa/schemas/whatsapp/message_types/order.py +372 -0
  167. wappa/schemas/whatsapp/message_types/reaction.py +271 -0
  168. wappa/schemas/whatsapp/message_types/sticker.py +328 -0
  169. wappa/schemas/whatsapp/message_types/system.py +317 -0
  170. wappa/schemas/whatsapp/message_types/text.py +411 -0
  171. wappa/schemas/whatsapp/message_types/unsupported.py +273 -0
  172. wappa/schemas/whatsapp/message_types/video.py +344 -0
  173. wappa/schemas/whatsapp/status_models.py +479 -0
  174. wappa/schemas/whatsapp/validators.py +454 -0
  175. wappa/schemas/whatsapp/webhook_container.py +438 -0
  176. wappa/webhooks/__init__.py +17 -0
  177. wappa/webhooks/core/__init__.py +71 -0
  178. wappa/webhooks/core/base_message.py +499 -0
  179. wappa/webhooks/core/base_status.py +322 -0
  180. wappa/webhooks/core/base_webhook.py +312 -0
  181. wappa/webhooks/core/types.py +253 -0
  182. wappa/webhooks/core/webhook_interfaces/__init__.py +48 -0
  183. wappa/webhooks/core/webhook_interfaces/base_components.py +293 -0
  184. wappa/webhooks/core/webhook_interfaces/universal_webhooks.py +441 -0
  185. wappa/webhooks/factory.py +754 -0
  186. wappa/webhooks/whatsapp/__init__.py +6 -0
  187. wappa/webhooks/whatsapp/base_models.py +285 -0
  188. wappa/webhooks/whatsapp/message_types/__init__.py +93 -0
  189. wappa/webhooks/whatsapp/message_types/audio.py +350 -0
  190. wappa/webhooks/whatsapp/message_types/button.py +267 -0
  191. wappa/webhooks/whatsapp/message_types/contact.py +464 -0
  192. wappa/webhooks/whatsapp/message_types/document.py +421 -0
  193. wappa/webhooks/whatsapp/message_types/errors.py +195 -0
  194. wappa/webhooks/whatsapp/message_types/image.py +424 -0
  195. wappa/webhooks/whatsapp/message_types/interactive.py +430 -0
  196. wappa/webhooks/whatsapp/message_types/location.py +416 -0
  197. wappa/webhooks/whatsapp/message_types/order.py +372 -0
  198. wappa/webhooks/whatsapp/message_types/reaction.py +271 -0
  199. wappa/webhooks/whatsapp/message_types/sticker.py +328 -0
  200. wappa/webhooks/whatsapp/message_types/system.py +317 -0
  201. wappa/webhooks/whatsapp/message_types/text.py +411 -0
  202. wappa/webhooks/whatsapp/message_types/unsupported.py +273 -0
  203. wappa/webhooks/whatsapp/message_types/video.py +344 -0
  204. wappa/webhooks/whatsapp/status_models.py +479 -0
  205. wappa/webhooks/whatsapp/validators.py +454 -0
  206. wappa/webhooks/whatsapp/webhook_container.py +438 -0
  207. wappa-0.1.0.dist-info/METADATA +269 -0
  208. wappa-0.1.0.dist-info/RECORD +211 -0
  209. wappa-0.1.0.dist-info/WHEEL +4 -0
  210. wappa-0.1.0.dist-info/entry_points.txt +2 -0
  211. wappa-0.1.0.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,269 @@
1
+ Metadata-Version: 2.4
2
+ Name: wappa
3
+ Version: 0.1.0
4
+ Summary: Open Source Framework to develop smart Workflows, Agents and full chat applications through WhatsApp
5
+ Project-URL: Homepage, https://github.com/mimeia-oss/wappa
6
+ Project-URL: Documentation, https://docs.wappa.dev
7
+ Project-URL: Repository, https://github.com/mimeia-oss/wappa
8
+ Project-URL: Issues, https://github.com/mimeia-oss/wappa/issues
9
+ Project-URL: Changelog, https://github.com/mimeia-oss/wappa/blob/main/CHANGELOG.md
10
+ Author-email: Sasha Canal <contact@mimeia.com>
11
+ License: Apache License
12
+ Version 2.0, January 2004
13
+ http://www.apache.org/licenses/
14
+
15
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
16
+
17
+ 1. Definitions.
18
+
19
+ "License" shall mean the terms and conditions for use, reproduction,
20
+ and distribution as defined by Sections 1 through 9 of this document.
21
+
22
+ "Licensor" shall mean the copyright owner or entity authorized by
23
+ the copyright owner that is granting the License.
24
+
25
+ "Legal Entity" shall mean the union of the acting entity and all
26
+ other entities that control, are controlled by, or are under common
27
+ control with that entity. For the purposes of this definition,
28
+ "control" means (i) the power, direct or indirect, to cause the
29
+ direction or management of such entity, whether by contract or
30
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
31
+ outstanding shares, or (iii) beneficial ownership of such entity.
32
+
33
+ "You" (or "Your") shall mean an individual or Legal Entity
34
+ exercising permissions granted by this License.
35
+
36
+ "Source" form shall mean the preferred form for making modifications,
37
+ including but not limited to software source code, documentation
38
+ source, and configuration files.
39
+
40
+ "Object" form shall mean any form resulting from mechanical
41
+ transformation or translation of a Source form, including but
42
+ not limited to compiled object code, generated documentation,
43
+ and conversions to other media types.
44
+
45
+ "Work" shall mean the work of authorship, whether in Source or
46
+ Object form, made available under the License, as indicated by a
47
+ copyright notice that is included in or attached to the work
48
+ (an example is provided in the Appendix below).
49
+
50
+ "Derivative Works" shall mean any work, whether in Source or Object
51
+ form, that is based on (or derived from) the Work and for which the
52
+ editorial revisions, annotations, elaborations, or other modifications
53
+ represent, as a whole, an original work of authorship. For the purposes
54
+ of this License, Derivative Works shall not include works that remain
55
+ separable from, or merely link (or bind by name) to the interfaces of,
56
+ the Work and Derivative Works thereof.
57
+
58
+ "Contribution" shall mean any work of authorship, including
59
+ the original version of the Work and any modifications or additions
60
+ to that Work or Derivative Works thereof, that is intentionally
61
+ submitted to Licensor for inclusion in the Work by the copyright owner
62
+ or by an individual or Legal Entity authorized to submit on behalf of
63
+ the copyright owner. For the purposes of this definition, "submitted"
64
+ means any form of electronic, verbal, or written communication sent
65
+ to the Licensor or its representatives, including but not limited to
66
+ communication on electronic mailing lists, source code control systems,
67
+ and issue tracking systems that are managed by, or on behalf of, the
68
+ Licensor for the purpose of discussing and improving the Work, but
69
+ excluding communication that is conspicuously marked or otherwise
70
+ designated in writing by the copyright owner as "Not a Contribution."
71
+
72
+ "Contributor" shall mean Licensor and any individual or Legal Entity
73
+ on behalf of whom a Contribution has been received by Licensor and
74
+ subsequently incorporated within the Work.
75
+
76
+ 2. Grant of Copyright License. Subject to the terms and conditions of
77
+ this License, each Contributor hereby grants to You a perpetual,
78
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
79
+ copyright license to reproduce, prepare Derivative Works of,
80
+ publicly display, publicly perform, sublicense, and distribute the
81
+ Work and such Derivative Works in Source or Object form.
82
+
83
+ 3. Grant of Patent License. Subject to the terms and conditions of
84
+ this License, each Contributor hereby grants to You a perpetual,
85
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
86
+ (except as stated in this section) patent license to make, have made,
87
+ use, offer to sell, sell, import, and otherwise transfer the Work,
88
+ where such license applies only to those patent claims licensable
89
+ by such Contributor that are necessarily infringed by their
90
+ Contribution(s) alone or by combination of their Contribution(s)
91
+ with the Work to which such Contribution(s) was submitted. If You
92
+ institute patent litigation against any entity (including a
93
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
94
+ or a Contribution incorporated within the Work constitutes direct
95
+ or contributory patent infringement, then any patent licenses
96
+ granted to You under this License for that Work shall terminate
97
+ as of the date such litigation is filed.
98
+
99
+ 4. Redistribution. You may reproduce and distribute copies of the
100
+ Work or Derivative Works thereof in any medium, with or without
101
+ modifications, and in Source or Object form, provided that You
102
+ meet the following conditions:
103
+
104
+ (a) You must give any other recipients of the Work or
105
+ Derivative Works a copy of this License; and
106
+
107
+ (b) You must cause any modified files to carry prominent notices
108
+ stating that You changed the files; and
109
+
110
+ (c) You must retain, in the Source form of any Derivative Works
111
+ that You distribute, all copyright, patent, trademark, and
112
+ attribution notices from the Source form of the Work,
113
+ excluding those notices that do not pertain to any part of
114
+ the Derivative Works; and
115
+
116
+ (d) If the Work includes a "NOTICE" text file as part of its
117
+ distribution, then any Derivative Works that You distribute must
118
+ include a readable copy of the attribution notices contained
119
+ within such NOTICE file, excluding those notices that do not
120
+ pertain to any part of the Derivative Works, in at least one
121
+ of the following places: within a NOTICE text file distributed
122
+ as part of the Derivative Works; within the Source form or
123
+ documentation, if provided along with the Derivative Works; or,
124
+ within a display generated by the Derivative Works, if and
125
+ wherever such third-party notices normally appear. The contents
126
+ of the NOTICE file are for informational purposes only and
127
+ do not modify the License. You may add Your own attribution
128
+ notices within Derivative Works that You distribute, alongside
129
+ or as an addendum to the NOTICE text from the Work, provided
130
+ that such additional attribution notices cannot be construed
131
+ as modifying the License.
132
+
133
+ You may add Your own copyright statement to Your modifications and
134
+ may provide additional or different license terms and conditions
135
+ for use, reproduction, or distribution of Your modifications, or
136
+ for any such Derivative Works as a whole, provided Your use,
137
+ reproduction, and distribution of the Work otherwise complies with
138
+ the conditions stated in this License.
139
+
140
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
141
+ any Contribution intentionally submitted for inclusion in the Work
142
+ by You to the Licensor shall be under the terms and conditions of
143
+ this License, without any additional terms or conditions.
144
+ Notwithstanding the above, nothing herein shall supersede or modify
145
+ the terms of any separate license agreement you may have executed
146
+ with Licensor regarding such Contributions.
147
+
148
+ 6. Trademarks. This License does not grant permission to use the trade
149
+ names, trademarks, service marks, or product names of the Licensor,
150
+ except as required for reasonable and customary use in describing the
151
+ origin of the Work and reproducing the content of the NOTICE file.
152
+
153
+ 7. Disclaimer of Warranty. Unless required by applicable law or
154
+ agreed to in writing, Licensor provides the Work (and each
155
+ Contributor provides its Contributions) on an "AS IS" BASIS,
156
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
157
+ implied, including, without limitation, any warranties or conditions
158
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
159
+ PARTICULAR PURPOSE. You are solely responsible for determining the
160
+ appropriateness of using or redistributing the Work and assume any
161
+ risks associated with Your exercise of permissions under this License.
162
+
163
+ 8. Limitation of Liability. In no event and under no legal theory,
164
+ whether in tort (including negligence), contract, or otherwise,
165
+ unless required by applicable law (such as deliberate and grossly
166
+ negligent acts) or agreed to in writing, shall any Contributor be
167
+ liable to You for damages, including any direct, indirect, special,
168
+ incidental, or consequential damages of any character arising as a
169
+ result of this License or out of the use or inability to use the
170
+ Work (including but not limited to damages for loss of goodwill,
171
+ work stoppage, computer failure or malfunction, or any and all
172
+ other commercial damages or losses), even if such Contributor
173
+ has been advised of the possibility of such damages.
174
+
175
+ 9. Accepting Warranty or Additional Liability. While redistributing
176
+ the Work or Derivative Works thereof, You may choose to offer,
177
+ and charge a fee for, acceptance of support, warranty, indemnity,
178
+ or other liability obligations and/or rights consistent with this
179
+ License. However, in accepting such obligations, You may act only
180
+ on Your own behalf and on Your sole responsibility, not on behalf
181
+ of any other Contributor, and only if You agree to indemnify,
182
+ defend, and hold each Contributor harmless for any liability
183
+ incurred by, or claims asserted against, such Contributor by reason
184
+ of your accepting any such warranty or additional liability.
185
+
186
+ END OF TERMS AND CONDITIONS
187
+
188
+ APPENDIX: How to apply the Apache License to your work.
189
+
190
+ To apply the Apache License to your work, attach the following
191
+ boilerplate notice, with the fields enclosed by brackets "[]"
192
+ replaced with your own identifying information. (Don't include
193
+ the brackets!) The text should be enclosed in the appropriate
194
+ comment syntax for the file format. We also recommend that a
195
+ file or class name and description of purpose be included on the
196
+ same "printed page" as the copyright notice for easier
197
+ identification within third-party archives.
198
+
199
+ Copyright [yyyy] [name of copyright owner]
200
+
201
+ Licensed under the Apache License, Version 2.0 (the "License");
202
+ you may not use this file except in compliance with the License.
203
+ You may obtain a copy of the License at
204
+
205
+ http://www.apache.org/licenses/LICENSE-2.0
206
+
207
+ Unless required by applicable law or agreed to in writing, software
208
+ distributed under the License is distributed on an "AS IS" BASIS,
209
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
210
+ See the License for the specific language governing permissions and
211
+ limitations under the License.
212
+ License-File: LICENSE
213
+ Keywords: agents,ai-agents,business-api,chatbot,messaging,webhook,whatsapp,workflows
214
+ Classifier: Development Status :: 4 - Beta
215
+ Classifier: Intended Audience :: Developers
216
+ Classifier: License :: OSI Approved :: Apache Software License
217
+ Classifier: Operating System :: OS Independent
218
+ Classifier: Programming Language :: Python :: 3
219
+ Classifier: Programming Language :: Python :: 3.12
220
+ Classifier: Topic :: Communications :: Chat
221
+ Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
222
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
223
+ Requires-Python: >=3.12
224
+ Requires-Dist: aiofiles>=24.1.0
225
+ Requires-Dist: aiohttp>=3.11.0
226
+ Requires-Dist: fastapi>=0.115.0
227
+ Requires-Dist: hypercorn>=0.17.0
228
+ Requires-Dist: pydantic-settings>=2.10.0
229
+ Requires-Dist: pydantic>=2.8.0
230
+ Requires-Dist: python-dotenv>=1.0.0
231
+ Requires-Dist: rich>=13.0.0
232
+ Requires-Dist: typer>=0.9.0
233
+ Requires-Dist: uvicorn[standard]>=0.24.0
234
+ Provides-Extra: ai
235
+ Requires-Dist: numpy>=2.2.0; extra == 'ai'
236
+ Requires-Dist: openai>=1.69.0; extra == 'ai'
237
+ Provides-Extra: all
238
+ Requires-Dist: numpy>=2.2.0; extra == 'all'
239
+ Requires-Dist: openai>=1.69.0; extra == 'all'
240
+ Requires-Dist: opencv-python-headless>=4.11.0; extra == 'all'
241
+ Requires-Dist: pillow>=11.1.0; extra == 'all'
242
+ Requires-Dist: redis>=5.2.0; extra == 'all'
243
+ Requires-Dist: sqlmodel>=0.0.24; extra == 'all'
244
+ Provides-Extra: database
245
+ Requires-Dist: sqlmodel>=0.0.24; extra == 'database'
246
+ Provides-Extra: dev
247
+ Requires-Dist: black>=25.1.0; extra == 'dev'
248
+ Requires-Dist: mypy>=1.0.0; extra == 'dev'
249
+ Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
250
+ Requires-Dist: pytest-asyncio>=1.1.0; extra == 'dev'
251
+ Requires-Dist: pytest>=8.4.0; extra == 'dev'
252
+ Requires-Dist: ruff>=0.9.0; extra == 'dev'
253
+ Provides-Extra: media
254
+ Requires-Dist: opencv-python-headless>=4.11.0; extra == 'media'
255
+ Requires-Dist: pillow>=11.1.0; extra == 'media'
256
+ Provides-Extra: redis
257
+ Requires-Dist: redis>=5.2.0; extra == 'redis'
258
+ Description-Content-Type: text/markdown
259
+
260
+ # wappa
261
+ Open Source Framework to develop smart Workflows, Agents and full chat appllications through WhatsApp
262
+
263
+ So the idea of this project is to take the /app and refactor it to break this up and make it into an opensource project for example things I want:
264
+ 1) from wapp import WhatsAppMessenger -> So then throughoutt flow in /events I can just initialize the WhatsAppMessenger and send all the messages
265
+ 2) have a terminal like ruff or black named wappa so when the user writes uvx wappa init or uv run wappa init a terminal opens to generate a clean project
266
+
267
+ and yeah I mean right now I have in this project, Airtable, Payment processor I want to delete does services and payment webhooks... just stick with the WhatsApp webhooks and the Messenger interface, have the event_dispatcher as the final destination of all webhooks... and literally All i want when the client hits init is just the webhooks dispatching to the eventhandler all the other folders and scaffolding shoudl be imported through the Wappa module!
268
+
269
+ so yeah the purpose of this project is this
@@ -0,0 +1,211 @@
1
+ wappa/__init__.py,sha256=oqg3ljmJUFH8XXGCqrYagvCkwDx46RA5CRLV2xeISaY,1976
2
+ wappa/api/__init__.py,sha256=wyWq1i6vhnyNgIO19IABPmWpEDp6fH2QiWSILwgVBSY,38
3
+ wappa/api/controllers/__init__.py,sha256=-92DsTHgj0TJl6aauFkoQkNBNFZEvv9D3K2j_OGFoRc,285
4
+ wappa/api/controllers/webhook_controller.py,sha256=PN2KOjPmHe4ABc5V1Cyj5jR4R_BPoalsB5TpmEL1DMY,17597
5
+ wappa/api/dependencies/__init__.py,sha256=hAFqydqdKpqWcf0OLa0qyWZfZlSO1AejXGryLLvH_ao,411
6
+ wappa/api/dependencies/whatsapp_dependencies.py,sha256=-hMT_4MWcFlwXHjLn6RkmhBhOunJ6BjT9b7TtuhRxGI,7729
7
+ wappa/api/dependencies/whatsapp_media_dependencies.py,sha256=IJin1_uowVLqDT_TX088T9dRYyDdhyghjjPYNqHkEHc,816
8
+ wappa/api/middleware/__init__.py,sha256=YnaM4amGA8Htn-XPRED5P0N8956olOYqCTqJVISfQyU,264
9
+ wappa/api/middleware/error_handler.py,sha256=Yr_vrezPPPXEylZiwY2rqrZK-XQK2BsYMRrQM3nGa9M,5435
10
+ wappa/api/middleware/owner.py,sha256=WdknrfxsrovtuWQhMuz3Dyi6oZUPY-7Vl0BY4zcGxvM,4057
11
+ wappa/api/middleware/request_logging.py,sha256=P9ARNSmEzZ0FwlbBLNxuMKI5q2rcqfEwIZ2Cib7Ljpg,6805
12
+ wappa/api/routes/__init__.py,sha256=ZijcrWWMxCkypVIqhAI-gKM6gmyYwJxhOugnMl9EHUo,185
13
+ wappa/api/routes/health.py,sha256=UpkbPQ_KWpbOX5TCDTBVyZB0YXhAufIW2qgyRDdBwok,2954
14
+ wappa/api/routes/webhooks.py,sha256=7lseMwW9pu3Lp2cyPJDmKzOXhW0JrowiKciI7qy6nbo,7629
15
+ wappa/api/routes/whatsapp_combined.py,sha256=KYqR8ruYsPhM0iAPVGEYWLTNjnhpZcOVAFAFZtn1DIM,1144
16
+ wappa/api/routes/whatsapp/__init__.py,sha256=SJn-Ub7IsOb7XF5aEaq8nv_E-TR2B1GrYZnkNqBgORM,553
17
+ wappa/api/routes/whatsapp/whatsapp_interactive.py,sha256=cgtDJ8LNcpV5BvR7MEbpJ5nJg3bIrCm5GM0XClAEYNo,15058
18
+ wappa/api/routes/whatsapp/whatsapp_media.py,sha256=bGz6y8XoO4TTzUZ2tWh7R2N7i3xtWLeS_VA0NIXwDfg,14260
19
+ wappa/api/routes/whatsapp/whatsapp_messages.py,sha256=_CM_HDtrvC4HOk1Mhv4nvkTPNq1jMLW-iomhExdrG2U,6587
20
+ wappa/api/routes/whatsapp/whatsapp_specialized.py,sha256=O5yYq5omYkEzGoB5hPsAbM1xUQ0ZEz2AO0i71PTSGag,18509
21
+ wappa/api/routes/whatsapp/whatsapp_templates.py,sha256=xx-UvuOFDtADUbXrwsSEc-I9u2w_jHqlUO-9ZN1uIdY,15371
22
+ wappa/cli/__init__.py,sha256=IAcBraY6UIX5UE2gUcMZBDrPS2CRxd84eVR3IMI8S14,148
23
+ wappa/cli/main.py,sha256=qPn49S14ILRG9md-13ONU_TY7vPNUplwuwxlycXVpeA,6133
24
+ wappa/core/__init__.py,sha256=LbKtd10YiwBpjyYFtIUtIQrpQV-p94vR9LouQB17R88,149
25
+ wappa/core/types.py,sha256=ez9aAXpD2D6GT7uNhw17XlZbQU_PYTcvGpWleAKEe24,2743
26
+ wappa/core/wappa_app.py,sha256=0gmDdQr5-NZyEvFnHUHyZB_51RSl3nM57BMacey8GbY,18956
27
+ wappa/core/config/__init__.py,sha256=rLVdjj9dAvDaa2lCf-UgGPCZ7YODCWIkB9PcSCl4NgE,104
28
+ wappa/core/config/settings.py,sha256=e4AZPEwr5jjsd5WmAS0uRHPOk95x-o_qcUiiaWFTe60,6228
29
+ wappa/core/events/__init__.py,sha256=ju2xxhyouJ0efgQcG40_zb_CHzSLj6v0isLJUK5MQHM,1058
30
+ wappa/core/events/default_handlers.py,sha256=4I_PWOT0JBmq5a8OsSE6CkpNaXAt6uuFp2gpcyPZrpU,23669
31
+ wappa/core/events/event_dispatcher.py,sha256=fJBlZ5rCKkKZtfabWy9mueiFyV1kWotZBSQ9BpLTC8s,8354
32
+ wappa/core/events/event_handler.py,sha256=MrV0-P_0HLvkkpUCO3HJKnUngP2oMuDE4Ujbsnw0JC0,9388
33
+ wappa/core/events/webhook_factory.py,sha256=k6dfHp_viek42EVT95pnJd3LtAqPf5lsRKbcaBRwJF0,7232
34
+ wappa/core/factory/__init__.py,sha256=r27b8S_xaWk5gcZ3YCx5R5WjZ1ORYiBZyXqvlprD5Ow,389
35
+ wappa/core/factory/plugin.py,sha256=ZUiBzaJ9o2php0tYHG-rE0D013kTdrMzNl75W52fQJk,2139
36
+ wappa/core/factory/wappa_builder.py,sha256=6Z6_k8Bt1oO0TzPQAqdH9J5HHt5-WbO3Nz7O9UbeIXU,12415
37
+ wappa/core/logging/__init__.py,sha256=goYcDRKWMHW8ATHWplRL047n-I8dFuIonSVD6t6ewKQ,174
38
+ wappa/core/logging/context.py,sha256=bHPaK_DQkDy9CeYxRNKdYDg4HrhVblpSF1Gb2fOHkp4,2888
39
+ wappa/core/logging/logger.py,sha256=_IAAdklsqAx3YbQclkE6DWjRz46KStWxCfpJUjgKx08,11840
40
+ wappa/core/plugins/__init__.py,sha256=7mEGSZIgwuxpfW7zu6YSWj4wZtz2Wtv5RAVRQe6-kDE,1038
41
+ wappa/core/plugins/auth_plugin.py,sha256=yjYoCFPn3SJvaYb7zZGSoQbgeZhhJnm0rcTkIE1q3CE,4931
42
+ wappa/core/plugins/cors_plugin.py,sha256=nCLlsihpKB0Fq24tGHFh__H4JgRqVHXPtuuYwqVJ8rM,4304
43
+ wappa/core/plugins/custom_middleware_plugin.py,sha256=Wecqr85ZnNCJwbFbSLT2pvxD_NccAYia-rDqM9cTkfU,5166
44
+ wappa/core/plugins/database_plugin.py,sha256=yc38eavLevcj7Egrajcz92ZGRlqpEPEAu7ryf1To7nc,7892
45
+ wappa/core/plugins/rate_limit_plugin.py,sha256=i8bcrs_4QJxxazP9kIjUDjDct2AhjYD0BUOKQOUDvRY,5462
46
+ wappa/core/plugins/redis_plugin.py,sha256=9SyH5Q2ZZhtKTnh78obX3gMznDBi0Hrv29osrbu1zoU,8224
47
+ wappa/core/plugins/wappa_core_plugin.py,sha256=vZU3wltCI85gzC5R5hiylHD-7P83_I2WADZ8rFSC614,9606
48
+ wappa/core/plugins/webhook_plugin.py,sha256=Tby0_Ep7lp0nuDqZWaJhCDW4x56y0380-8GX0j6iHzk,8205
49
+ wappa/database/__init__.py,sha256=HIrMMH5AQi29mz9peoUREXFw0XTKyyjZ7em_I3NQaWc,494
50
+ wappa/database/adapter.py,sha256=SlexZ8r9pb_LwXqUPMcm-0IStXdjBv1gKGDC6O6Q_J8,3156
51
+ wappa/database/adapters/__init__.py,sha256=IsFKIQRPfPQP7kkjdh9rezAlHMOfpfgZnAO80NZ5FZU,431
52
+ wappa/database/adapters/mysql_adapter.py,sha256=CQ-8oUjgglucRH2CVUKHg4taOJTPI4CrkY2nVT6unMU,6230
53
+ wappa/database/adapters/postgresql_adapter.py,sha256=m-a3peWH1QGGFBEm_uNEziC0aIJGWgzCPWDWPIDJJNw,5618
54
+ wappa/database/adapters/sqlite_adapter.py,sha256=ZMGTpAMuYNPiXTgpTM4kgMb6FxLou2uIVgdZ7QOhEpM,5783
55
+ wappa/domain/__init__.py,sha256=Q7N3Jn8k2VuhskjlIWJF6dlcqhhgiCeGxktDt0l7ywo,635
56
+ wappa/domain/builders/__init__.py,sha256=hemgr02K9fdV-_bHTygFCjh0iDpSNY5vNKQIBvhtY1s,106
57
+ wappa/domain/builders/message_builder.py,sha256=D7w1_Eu6m8c9_Selzj78uc6ShDErazTmHlRzZf2lAYA,5948
58
+ wappa/domain/entities/__init__.py,sha256=U9koMmg2iwE1kYoawtJSXklLACY5TnuKk9PrRKnCMPM,81
59
+ wappa/domain/enums/messenger_platform.py,sha256=6gbfRoasnMt_s2z6vFjtb17SC1T4scGQis9IGYo-Tm0,3843
60
+ wappa/domain/factories/__init__.py,sha256=I5CCZubX_YdO1KBtmnGv9GcRg0xwuAMr_Qtjp5yXoHQ,225
61
+ wappa/domain/factories/media_factory.py,sha256=x4fkL-yGZHuz6YzgdHRjVjXvy98QFz5I8DUqVgc1TNA,13834
62
+ wappa/domain/factories/message_factory.py,sha256=EL8NoDbHBHDXa_m-E6Jy5XliLbX1OlGLgrJCXBoegOo,15070
63
+ wappa/domain/factories/messenger_factory.py,sha256=8b86BZd4yOzUB3pWgVpabiMjK6HXeGWRmzLEg_HOwRc,9017
64
+ wappa/domain/interfaces/__init__.py,sha256=rsG8RTuU4z37B17QFlF4VYhkvpYWpsTUWZbj1ztl8aw,891
65
+ wappa/domain/interfaces/base_repository.py,sha256=DwQBXnxAH3wI-SR5qjOansAjdxtbV3dy7sBIVcbu_04,2478
66
+ wappa/domain/interfaces/cache_factory.py,sha256=zVtzgueQVcAfs6KY1rcbDJeaKfBjUxfPjCsWxP0aKIU,2646
67
+ wappa/domain/interfaces/cache_interface.py,sha256=pkQ3buQ2YniA0romosalLzERBZKr7SZnHhk31nZUKbI,5034
68
+ wappa/domain/interfaces/expiry_repository.py,sha256=n4N4cdKaUIxY8aio23omsRRWaTrszV_nJTOjmmgjTj8,1965
69
+ wappa/domain/interfaces/media_interface.py,sha256=gpQ4jE58yENOzkL9i0KXWe57aTf38TAvP9tQIPNPMFk,9052
70
+ wappa/domain/interfaces/messaging_interface.py,sha256=1DeUQVptxMM_9t3_gXaMFwlmkkd5qr-_vPFCS-vPVLQ,17201
71
+ wappa/domain/interfaces/pubsub_repository.py,sha256=GiUdekl9-WYtBP4e07tIYfuc5JRt9P1nbqqG1ChKJzM,3679
72
+ wappa/domain/interfaces/repository_factory.py,sha256=upmzuNf0EWwTcTHPK24A6L_gSwOed78qTN6DLha-ETI,2833
73
+ wappa/domain/interfaces/shared_state_repository.py,sha256=Ch8ktYhnDdmNLp2b95WFaWRn0oZRWKO350rgobJEBeI,2845
74
+ wappa/domain/interfaces/state_repository.py,sha256=3kzQAga6PlFssECGn2oROyKbM92pLLFgZfdQX0znbDQ,2952
75
+ wappa/domain/interfaces/tables_repository.py,sha256=FuanVVKWJwf7XVkI7FMd7iMbBSopDti-GOoHDuaCvxA,5171
76
+ wappa/domain/interfaces/user_repository.py,sha256=IfAvqHbw4HNM494ldjRGEGa_7_B1Ez9HRH1IdV_pguI,2521
77
+ wappa/domain/interfaces/webhooks/__init__.py,sha256=QgrgkzFHPslmekjtV66N4-c19L8okBImGj3HrWQ5sPo,37
78
+ wappa/domain/models/media_result.py,sha256=raPoe3Wee2vsflLPFvkUWSSXMKATYAjNO_eI4R-DfFQ,3180
79
+ wappa/domain/models/platforms/__init__.py,sha256=hxuNQC1zCyHZ0x9trYlGv9mveuW_D-V3TZmuhgzX95Y,276
80
+ wappa/domain/models/platforms/platform_config.py,sha256=MxOSkHCjjuDJA1hU9eh32k-g7HtkEdv9mB1FEAzfPsQ,3876
81
+ wappa/domain/services/__init__.py,sha256=irtZ2OcFhHd_p-0OiPf6V5yysMWXfDtx2-pAaCbgD5s,205
82
+ wappa/domain/services/tenant_credentials_service.py,sha256=PPHjAR5mooH3f9dLdOnesFGjjKYiNaTciStcjIBozrM,1956
83
+ wappa/messaging/__init__.py,sha256=b5ZqawwV3YiHcGV_HRYmPnFQyX28fSRSoaJyxGNeed8,253
84
+ wappa/messaging/whatsapp/__init__.py,sha256=EJPIjD3kwKGrfWMZbAngC2GoKlfiRehPqmLLfc4dFQo,33
85
+ wappa/messaging/whatsapp/client/__init__.py,sha256=v_HNukKZGsyUsa6yd7PLRlEeLT10sRhEuu1lCLCstWY,200
86
+ wappa/messaging/whatsapp/client/whatsapp_client.py,sha256=JMquIaqt7eFOIXSdCRHWDeTvbagQ16esURr1d4lTfFU,14740
87
+ wappa/messaging/whatsapp/handlers/__init__.py,sha256=8elSFehUfzeVuDiS6cJkpsuoj7OjB57e3nd-_rLQrQc,434
88
+ wappa/messaging/whatsapp/handlers/whatsapp_interactive_handler.py,sha256=nLCHvkqQQh36xpJHjg-Ud9uKu_PXVjMfRCq5WkuI5kk,25859
89
+ wappa/messaging/whatsapp/handlers/whatsapp_media_handler.py,sha256=YVGOpGC-BKZY9_A_f-PiVXepVT6rCUL6aCtaZcsGvKg,22658
90
+ wappa/messaging/whatsapp/handlers/whatsapp_specialized_handler.py,sha256=MQXbbYyjsWK2-FAxSnPb8Togxdl677ZP64rx2QLk8C8,15363
91
+ wappa/messaging/whatsapp/handlers/whatsapp_template_handler.py,sha256=oOvxGn7X6Qwll19QUwUhq04hiwIds91vIZd7LwtHVss,14828
92
+ wappa/messaging/whatsapp/messenger/__init__.py,sha256=ipr_UzcpeivuRcMac3ETKqWBBhEjDwAQduUlc2tmDDw,134
93
+ wappa/messaging/whatsapp/messenger/whatsapp_messenger.py,sha256=F4AjI0gXUIGzUXpshdGzKcc57LlN6CgIRaxCFAldfQ4,34112
94
+ wappa/messaging/whatsapp/models/__init__.py,sha256=gfjKOabMXIRF76C0LE_XWn6lLGMmXtpiJ21TWT1g1pk,1414
95
+ wappa/messaging/whatsapp/models/basic_models.py,sha256=IqYsz93nbwhoE9O8VBIf7LgMk3BNTfFrPTB32avJh1Y,1924
96
+ wappa/messaging/whatsapp/models/interactive_models.py,sha256=3cMd5AG3L3rGf1NUEoCXcj_Ksmup2_XPHiIUD1fNor8,9950
97
+ wappa/messaging/whatsapp/models/media_models.py,sha256=4hGURi4gDnSY7lOCIWZiy_Td7GCug7KPGO2IrS8xasE,7374
98
+ wappa/messaging/whatsapp/models/specialized_models.py,sha256=jus5IH5yKje2kph78UTnzj-PU44U20gc9qyHJO_t4xo,10215
99
+ wappa/messaging/whatsapp/models/template_models.py,sha256=rapAwbvJeJ4pqeDtSRyhoMZuVgiy-WFTmVVZCrcrpLA,8580
100
+ wappa/persistence/cache_factory.py,sha256=428eCUWbo37fsSOPGCuMvjwqTn3FedCIeHBYf6oYKuA,2832
101
+ wappa/persistence/json/__init__.py,sha256=YWGnYXGXzljpM6Vhgb9qC0En_ffg3g63jxflIIddxMI,371
102
+ wappa/persistence/json/cache_adapters.py,sha256=lvuLOL5FKozM1FDiRSVb41D6zdDdHnycE87AnTwaFLE,10252
103
+ wappa/persistence/json/json_cache_factory.py,sha256=h1DCNb4dI034OymGA6dXvzYG4n12u3iT4coLbCQjewU,2343
104
+ wappa/persistence/json/storage_manager.py,sha256=Coi_KdXRotW8qtADsr7O_7JqREQhyCjom9jz9gAH5I8,9094
105
+ wappa/persistence/json/handlers/__init__.py,sha256=idUBFqDp7OHCUKxz3w5gqBEms2QABjfvrnAJVlu08Dk,34
106
+ wappa/persistence/json/handlers/state_handler.py,sha256=RGoqtRkUeapVCAkl-rrCS8PumOg0aUT_KOcRNJQMlR8,7442
107
+ wappa/persistence/json/handlers/table_handler.py,sha256=S6rcXkRzEpltd4cjfN3bc6ukbs7ZGNJEePZXKzbqte4,7545
108
+ wappa/persistence/json/handlers/user_handler.py,sha256=8JMUD6Cg_kamccrVYPlO5F2J6pSaGI7DetJN4lD8qxg,6424
109
+ wappa/persistence/json/handlers/utils/__init__.py,sha256=h2BDkz4VWLWt-LllG7_O800VPcbzpr4SVl1KpUeyzaI,35
110
+ wappa/persistence/json/handlers/utils/file_manager.py,sha256=AixndHURExCvL1x_SfhAwAe6CTn1Shs0PRPcnFZkoG8,5906
111
+ wappa/persistence/json/handlers/utils/key_factory.py,sha256=8_8TyTxrtC7W_4PPmQbNF8r1FGV9cSpiiSocOutdIVc,353
112
+ wappa/persistence/json/handlers/utils/serialization.py,sha256=h4aYy2_GfL4WZhd99V-_Wd9nJhi7AjuFhMd-aQmIb3o,3748
113
+ wappa/persistence/memory/__init__.py,sha256=imjVX4o6JuH2LS7ndZHBc0KgLFAYnygFSjscdqIe2W4,385
114
+ wappa/persistence/memory/cache_adapters.py,sha256=qsnRCv7wRQmtRKFDRrOjClWU4qdpwi71GKKB3w4Xnr0,10280
115
+ wappa/persistence/memory/memory_cache_factory.py,sha256=dGQzh1BqslAgdZVImRA9RJGjZf_IZiQ0u1QV0hIjzoY,2491
116
+ wappa/persistence/memory/storage_manager.py,sha256=SzM8gb9SFd8VvTSU5CU3whVLAixifHiYxzXYaANbPJw,7582
117
+ wappa/persistence/memory/handlers/__init__.py,sha256=SXciLGkttBZWhnSxUbyI3E-iAN71wPD0emJzUh0fgIA,36
118
+ wappa/persistence/memory/handlers/state_handler.py,sha256=jV5i3Vj4vwPMZK05CLveN4IhNKqS7TLYr-Z_O1Ochs0,7456
119
+ wappa/persistence/memory/handlers/table_handler.py,sha256=IsbcjT1ZiUOY2m1WOPRFIlwgQ3UC1JfB4WCxN2PbsuU,8343
120
+ wappa/persistence/memory/handlers/user_handler.py,sha256=je4vCECN_ahZ2sUYCMKE3ElmRMGwSjBfFu9oikDoPb4,6447
121
+ wappa/persistence/memory/handlers/utils/__init__.py,sha256=q-wOHlSdggofNsuk1jYWmKa5-CAO7iHJtqF2B1do3hg,37
122
+ wappa/persistence/memory/handlers/utils/key_factory.py,sha256=yzbUR3ZK8GcbWgpagIVG5IMgKiLTXILRCXZuM7Jc6ag,355
123
+ wappa/persistence/memory/handlers/utils/memory_store.py,sha256=_q4mjkjBXn_t0_Inu2ERIUe3UXD1EhLoTJDCGrC5Wtc,10969
124
+ wappa/persistence/memory/handlers/utils/ttl_manager.py,sha256=BJxWLE6foiHj4Ejnsz9gCztAxGS3b7K34HWNN5jOWi4,7374
125
+ wappa/persistence/redis/README.md,sha256=XGQk1cMwdzJiDdI0-VL8QLvupwsWWYD7svtVwVh1Bls,27959
126
+ wappa/persistence/redis/__init__.py,sha256=F0DFv1EgHos8o-YJW2lFW5UIzugengARHlBPiHWxrfE,276
127
+ wappa/persistence/redis/cache_adapters.py,sha256=0QhnIBdV1lh5-Somv6vDyQXSgxqEZhRyJOaDllhFuzw,10891
128
+ wappa/persistence/redis/ops.py,sha256=KJX4ZM7-FGGaZojvQOCn0O2C7_8EkQJ_ImSzRtLME4E,34101
129
+ wappa/persistence/redis/redis_cache_factory.py,sha256=TOezjufn8mwgVXMAaGm81DM_EAiRjCGWjjHfCTvJzXI,2283
130
+ wappa/persistence/redis/redis_client.py,sha256=VvcLqxFWDPtbdFfVxAugQ52DA4nhvo4CssdMTrZHEOo,7848
131
+ wappa/persistence/redis/redis_manager.py,sha256=WOkNM2YbkqYVgLVkmpDQ1ngByBlEgYteOdpSpzTI0jg,6355
132
+ wappa/persistence/redis/redis_handler/__init__.py,sha256=Eq7WsU5IjjRZs4ZPiJmSNkw3juUOri2dAvJJOR5A3Ys,582
133
+ wappa/persistence/redis/redis_handler/state_handler.py,sha256=LT5dJA2s_pYbc4hNnh0_J65SdCRUOvLnWTkQ-17X3Sw,6404
134
+ wappa/persistence/redis/redis_handler/table.py,sha256=4r07BP4qSn4xte_tmu9sUUdAGp3t7X2zD4fI-DgHxzY,5632
135
+ wappa/persistence/redis/redis_handler/user.py,sha256=cw_Oys3XKsWP9lwS2fbsH-QWKt4uclYqVVqzUXeZXfY,4849
136
+ wappa/persistence/redis/redis_handler/utils/__init__.py,sha256=r6kHB7AbOxyjnlOQt1EcpJWIfQFuIE-aZr1JHZt6RvI,318
137
+ wappa/persistence/redis/redis_handler/utils/key_factory.py,sha256=es3FDATzBvrmNqe83SPKB4PYHymrF8M9AdkBbTutUYg,1044
138
+ wappa/persistence/redis/redis_handler/utils/serde.py,sha256=LQOF_Lrf7Yrsj1TS8MlEWu_Sd8btvxVKnyYZGT4Gk18,5021
139
+ wappa/persistence/redis/redis_handler/utils/tenant_cache.py,sha256=S97CZWvKUPixymro9UepbQo5YkzRFLRK0rZ6l3yzvww,9219
140
+ wappa/processors/__init__.py,sha256=yL9FNM9eVX3pjP-xHNqzzus9-GD4R6k4cQDq2tFpkyI,210
141
+ wappa/processors/base_processor.py,sha256=4Zn0tXxR6HyiJv32t1YT2R4n_D_NbT0bZDhOgTOX4jU,9059
142
+ wappa/processors/factory.py,sha256=tgd1Ma9WdUs1hLy63YJXQ-ELivm44TrGvL5ZCvZp7QQ,18212
143
+ wappa/processors/whatsapp_processor.py,sha256=CzZP5yke_DrPhhnD8Z1opfmPBgy4tMZuzQ-VyqSVvQo,31479
144
+ wappa/schemas/__init__.py,sha256=q2N23nDgmK6cuLAx3PMhXIGViJMkKDS_6_V_xfzlaNM,215
145
+ wappa/schemas/factory.py,sha256=p_OfpxxBFqEvSqFc8lIAIQBKJdHlWCNkW6SeT8Qe5ZE,26157
146
+ wappa/schemas/core/__init__.py,sha256=qofoqeOQM-BFFOAetwSXJDYJ63ESip6tnF0wlSdxjYo,1759
147
+ wappa/schemas/core/base_message.py,sha256=2VouvOnfE-6Tsiy67h732vRfA9drtRSwQ6cm3o2xx6g,13748
148
+ wappa/schemas/core/base_status.py,sha256=PR5q3V8TWHisVgoo5XxSUSXTCJyrFSmz59W3orKR8m4,8407
149
+ wappa/schemas/core/base_webhook.py,sha256=FZTzFarnh98oFwTxobpPZbwemmjVE3ifctxC8P8wEt8,8793
150
+ wappa/schemas/core/types.py,sha256=Qep1QSWcd6RaGMaWQQ-EBWitZIkt0iF0gk9LOpPO9kQ,7501
151
+ wappa/schemas/core/webhook_interfaces/__init__.py,sha256=BjplGW5WOmyO34K9uDEJfhS_2lq3FtKHHAD7x_QPsdM,1363
152
+ wappa/schemas/core/webhook_interfaces/base_components.py,sha256=D8NzOZ15sn7I_w8PLfixU-3zDXx_S5oIh7UttHaYe6g,10305
153
+ wappa/schemas/core/webhook_interfaces/universal_webhooks.py,sha256=7KCLCd-TqI-5MYyeZOTMgB_j-RhsB3_aGqgfF1KfNIQ,12727
154
+ wappa/schemas/webhooks/__init__.py,sha256=QqgLX3976iVpS8tRqVtCqfaqHpxikvKj3JXWjyChNHU,33
155
+ wappa/schemas/whatsapp/__init__.py,sha256=zz8_92A88eaUcwaJQmanNUfd0P1rW2CtPhCKHDOOoN0,202
156
+ wappa/schemas/whatsapp/base_models.py,sha256=lIi8CWqqf0mhNnpIE7HmF_c14NLFEvtN8tnElPUsTWw,9654
157
+ wappa/schemas/whatsapp/status_models.py,sha256=gr55mgrODht3004HegIIwMwNpxV7EeH40naWyz6jcLI,16523
158
+ wappa/schemas/whatsapp/validators.py,sha256=9fvdHfvD3CuiAKn20ZE8d-iZi2xS01l280XLDfl-9qg,13551
159
+ wappa/schemas/whatsapp/webhook_container.py,sha256=QWSA1UTGRanI5KJ8un4OLV3ibiN9Retpnd36VlaUfLk,15262
160
+ wappa/schemas/whatsapp/message_types/__init__.py,sha256=-z8uebr4gUP9f94HaaXna46o-s5XeiA1pZw-oiSc8hI,2717
161
+ wappa/schemas/whatsapp/message_types/audio.py,sha256=f4Ci70Q_d1-TAGSy3kTt80DMq0FchtlXs4xbGBvMwO4,11733
162
+ wappa/schemas/whatsapp/message_types/button.py,sha256=Eu0xybRnT3YlxvPcFBSAXVanj8UY9sQ7HXApFt1OgS0,9040
163
+ wappa/schemas/whatsapp/message_types/contact.py,sha256=S-d-LRpfn-Sy9Lg_ikMorDECsHu6sSiii4zdIiWBeEQ,16563
164
+ wappa/schemas/whatsapp/message_types/document.py,sha256=Cb4a1iBZLC5ohho5wWc1o1mVWJCQOzwohVW6_R0iNeM,14374
165
+ wappa/schemas/whatsapp/message_types/errors.py,sha256=G58EkoVNycFpWvDsvOiCTrAdE2IDSQIUXVgOyn6uCwg,6696
166
+ wappa/schemas/whatsapp/message_types/image.py,sha256=nDCCq2L79DOJlki3KCkh3_diK3PlzKy_AQ7Qf0w-F_8,14771
167
+ wappa/schemas/whatsapp/message_types/interactive.py,sha256=pGvvNC8L3sDMjSaH7MHwb205FBv1zi8WPs1lnnU99vs,15735
168
+ wappa/schemas/whatsapp/message_types/location.py,sha256=9IXpHC21MbyhDCjGLE5KNVKass4yPZtG1FMMYywqNZI,13669
169
+ wappa/schemas/whatsapp/message_types/order.py,sha256=nBv8CO5n6rPl_KhNpE3d4bPVg9AxKSHWcZCBOiuhlQ0,12834
170
+ wappa/schemas/whatsapp/message_types/reaction.py,sha256=-q4ws-p0iK3glpYX0ELBuJCpSLOvsHI6_vBVnxyH088,9152
171
+ wappa/schemas/whatsapp/message_types/sticker.py,sha256=YCcXfX8gk3WXXLGd6Eh4kS8St1K8ltG3Ai90uvbLYYc,10789
172
+ wappa/schemas/whatsapp/message_types/system.py,sha256=SQXTiMxKPEq5ppyN_hsXXNN-CXCtrrFOuesTyqJ1RDw,10654
173
+ wappa/schemas/whatsapp/message_types/text.py,sha256=DOtncsGOsurRPe2Tq1nPB66CJpZV5L9cshu3Uhctjsk,14685
174
+ wappa/schemas/whatsapp/message_types/unsupported.py,sha256=B9WrkrlKfjDY9LFqrPgMQvAiXvYpvXVthZ1HOrMsZUw,9529
175
+ wappa/schemas/whatsapp/message_types/video.py,sha256=vgWV7pEyI92SKZTVKvULaPqxmZVmyzwJwwfexW1Z9AY,11268
176
+ wappa/webhooks/__init__.py,sha256=yXQ1Br24ch5EQsCi1EI7OU9roD6dBY5yiZn1wooyIPQ,386
177
+ wappa/webhooks/factory.py,sha256=mc0GsF3jPnIGQDPHDtxwto3n4osyBhbZwE8Lj_w7p2c,26160
178
+ wappa/webhooks/core/__init__.py,sha256=qofoqeOQM-BFFOAetwSXJDYJ63ESip6tnF0wlSdxjYo,1759
179
+ wappa/webhooks/core/base_message.py,sha256=2VouvOnfE-6Tsiy67h732vRfA9drtRSwQ6cm3o2xx6g,13748
180
+ wappa/webhooks/core/base_status.py,sha256=PR5q3V8TWHisVgoo5XxSUSXTCJyrFSmz59W3orKR8m4,8407
181
+ wappa/webhooks/core/base_webhook.py,sha256=FZTzFarnh98oFwTxobpPZbwemmjVE3ifctxC8P8wEt8,8793
182
+ wappa/webhooks/core/types.py,sha256=Qep1QSWcd6RaGMaWQQ-EBWitZIkt0iF0gk9LOpPO9kQ,7501
183
+ wappa/webhooks/core/webhook_interfaces/__init__.py,sha256=BjplGW5WOmyO34K9uDEJfhS_2lq3FtKHHAD7x_QPsdM,1363
184
+ wappa/webhooks/core/webhook_interfaces/base_components.py,sha256=D8NzOZ15sn7I_w8PLfixU-3zDXx_S5oIh7UttHaYe6g,10305
185
+ wappa/webhooks/core/webhook_interfaces/universal_webhooks.py,sha256=geyPHBj_6Eiu1tIj6RxJFUgOyA2AKelfPdbUNRDejxU,15688
186
+ wappa/webhooks/whatsapp/__init__.py,sha256=zz8_92A88eaUcwaJQmanNUfd0P1rW2CtPhCKHDOOoN0,202
187
+ wappa/webhooks/whatsapp/base_models.py,sha256=lIi8CWqqf0mhNnpIE7HmF_c14NLFEvtN8tnElPUsTWw,9654
188
+ wappa/webhooks/whatsapp/status_models.py,sha256=TsEnSzeCRFAB7Z1P-8tOxpHoL0DDGNYIGvUllP965bA,16526
189
+ wappa/webhooks/whatsapp/validators.py,sha256=9fvdHfvD3CuiAKn20ZE8d-iZi2xS01l280XLDfl-9qg,13551
190
+ wappa/webhooks/whatsapp/webhook_container.py,sha256=ZEyH-cDEjAWOmeE5-z_Nlj5QndL3y836xjjBLgqcp34,15265
191
+ wappa/webhooks/whatsapp/message_types/__init__.py,sha256=-z8uebr4gUP9f94HaaXna46o-s5XeiA1pZw-oiSc8hI,2717
192
+ wappa/webhooks/whatsapp/message_types/audio.py,sha256=F2RSOkSjfkHtAVTSUPryUUxjKlRzmu8be5Tfjd_HE9c,11736
193
+ wappa/webhooks/whatsapp/message_types/button.py,sha256=F5eB2GbNg2fbBioenu4Go1TdjLAR-PKize6WVXMhYTI,9043
194
+ wappa/webhooks/whatsapp/message_types/contact.py,sha256=KgfD_t5l5GnnbcJB3v4IdTvl72b2sGIXZU-qK31utVs,16566
195
+ wappa/webhooks/whatsapp/message_types/document.py,sha256=9BEG0d-PQpjxWycH29_34yex9viHG_VrWhXXzk0IPCU,14377
196
+ wappa/webhooks/whatsapp/message_types/errors.py,sha256=WpskE5ukKjCJGmiO4vCYwkEj4qitr0Uo2odpDAwQOw0,6697
197
+ wappa/webhooks/whatsapp/message_types/image.py,sha256=ZJg_Aj2OiIm6oaw77Z4o3kt7k0jmwZIi_X_Vs9eXD3U,14774
198
+ wappa/webhooks/whatsapp/message_types/interactive.py,sha256=fXlUw98TG_I1a7GR6JKJFVqLarcaweCDiZgWCG-j-Cs,15738
199
+ wappa/webhooks/whatsapp/message_types/location.py,sha256=v320OFoxK9pa-aj_FBOl3T8xxoX8JrZBPc3-w0C_ImY,13672
200
+ wappa/webhooks/whatsapp/message_types/order.py,sha256=agdzGHbFYeOP36Rbz-wxlJ1fvCuBLbmtfI18a02d0dk,12837
201
+ wappa/webhooks/whatsapp/message_types/reaction.py,sha256=pzMFc8mkoypwsoq7mjjmlwOfXIPP9OoPTqyyipXIgBY,9155
202
+ wappa/webhooks/whatsapp/message_types/sticker.py,sha256=l_H0QRbsmcf-hZ9TGS4-w88lruI2NA5spGTdA3JTGcY,10792
203
+ wappa/webhooks/whatsapp/message_types/system.py,sha256=lrAwSTNokxjDkgCg7Hg33eb8sxDLNq0G5LG7i7z9pig,10657
204
+ wappa/webhooks/whatsapp/message_types/text.py,sha256=u3gXGMNpJFDdaJWA0vhBGFTyAEzI2fyqvtaVvZwzAhA,14688
205
+ wappa/webhooks/whatsapp/message_types/unsupported.py,sha256=5GxVcNNu2X5H1gZvze3iNNrZUrUs2DxmiL3bruS38RI,9532
206
+ wappa/webhooks/whatsapp/message_types/video.py,sha256=NR081ZyNwxajmCbOw-LvPadU97Qksghxr_TWhWsZEz0,11271
207
+ wappa-0.1.0.dist-info/METADATA,sha256=MAWsbipcJLJb9WxQP5jEcDkhfKpaSeXOrul2Y-tELbU,16524
208
+ wappa-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
209
+ wappa-0.1.0.dist-info/entry_points.txt,sha256=KzfFZSK3VpWP4M-gpgh9AdKbhh4kOwiOI3q32e3NLHs,45
210
+ wappa-0.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
211
+ wappa-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wappa = wappa.cli.main:app