zango 0.2.0a0__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.
Files changed (199) hide show
  1. zango-0.2.0a0.dist-info/LICENSE +193 -0
  2. zango-0.2.0a0.dist-info/METADATA +114 -0
  3. zango-0.2.0a0.dist-info/RECORD +199 -0
  4. zango-0.2.0a0.dist-info/WHEEL +5 -0
  5. zango-0.2.0a0.dist-info/entry_points.txt +2 -0
  6. zango-0.2.0a0.dist-info/top_level.txt +1 -0
  7. zcore/__init__.py +1 -0
  8. zcore/api/__init__.py +0 -0
  9. zcore/api/app_auth/__init__.py +0 -0
  10. zcore/api/app_auth/profile/__init__.py +0 -0
  11. zcore/api/app_auth/profile/v1/__init__.py +0 -0
  12. zcore/api/app_auth/profile/v1/serializers.py +9 -0
  13. zcore/api/app_auth/profile/v1/urls.py +10 -0
  14. zcore/api/app_auth/profile/v1/utils.py +149 -0
  15. zcore/api/app_auth/profile/v1/views.py +77 -0
  16. zcore/api/app_auth/urls.py +7 -0
  17. zcore/api/platform/__init__.py +0 -0
  18. zcore/api/platform/auth/__init__.py +0 -0
  19. zcore/api/platform/auth/v1/__init__.py +0 -0
  20. zcore/api/platform/auth/v1/serializers.py +20 -0
  21. zcore/api/platform/auth/v1/urls.py +22 -0
  22. zcore/api/platform/auth/v1/views.py +167 -0
  23. zcore/api/platform/codeassist/__init__.py +0 -0
  24. zcore/api/platform/codeassist/v1/__init__.py +0 -0
  25. zcore/api/platform/codeassist/v1/urls.py +17 -0
  26. zcore/api/platform/codeassist/v1/utils.py +9 -0
  27. zcore/api/platform/codeassist/v1/views.py +308 -0
  28. zcore/api/platform/packages/__init__.py +0 -0
  29. zcore/api/platform/packages/v1/__init__.py +0 -0
  30. zcore/api/platform/packages/v1/urls.py +11 -0
  31. zcore/api/platform/packages/v1/views.py +71 -0
  32. zcore/api/platform/permissions/__init__.py +0 -0
  33. zcore/api/platform/permissions/v1/__init__.py +0 -0
  34. zcore/api/platform/permissions/v1/serializers.py +51 -0
  35. zcore/api/platform/permissions/v1/urls.py +22 -0
  36. zcore/api/platform/permissions/v1/views.py +173 -0
  37. zcore/api/platform/tasks/__init__.py +0 -0
  38. zcore/api/platform/tasks/v1/__init__.py +0 -0
  39. zcore/api/platform/tasks/v1/serializers.py +44 -0
  40. zcore/api/platform/tasks/v1/urls.py +7 -0
  41. zcore/api/platform/tasks/v1/views.py +126 -0
  42. zcore/api/platform/tenancy/__init__.py +0 -0
  43. zcore/api/platform/tenancy/v1/__init__.py +0 -0
  44. zcore/api/platform/tenancy/v1/serializers.py +152 -0
  45. zcore/api/platform/tenancy/v1/urls.py +61 -0
  46. zcore/api/platform/tenancy/v1/views.py +591 -0
  47. zcore/api/platform/urls.py +10 -0
  48. zcore/apps/__init__.py +13 -0
  49. zcore/apps/appauth/__init__.py +0 -0
  50. zcore/apps/appauth/admin.py +5 -0
  51. zcore/apps/appauth/apps.py +9 -0
  52. zcore/apps/appauth/auth_backend.py +30 -0
  53. zcore/apps/appauth/migrations/0001_initial.py +205 -0
  54. zcore/apps/appauth/migrations/0002_default_user_roles.py +24 -0
  55. zcore/apps/appauth/migrations/0003_remove_userrolemodel_temp_field_appusermodel_mobile_and_more.py +40 -0
  56. zcore/apps/appauth/migrations/0004_oldpasswords.py +55 -0
  57. zcore/apps/appauth/migrations/0005_remove_appusermodel_user.py +16 -0
  58. zcore/apps/appauth/migrations/0006_appusermodel_app_objects.py +18 -0
  59. zcore/apps/appauth/migrations/__init__.py +0 -0
  60. zcore/apps/appauth/models.py +266 -0
  61. zcore/apps/appauth/serializers.py +15 -0
  62. zcore/apps/appauth/signals.py +15 -0
  63. zcore/apps/appauth/templates/app.html +22 -0
  64. zcore/apps/appauth/templates/app_login_signup.html +21 -0
  65. zcore/apps/appauth/tests.py +3 -0
  66. zcore/apps/appauth/urls.py +10 -0
  67. zcore/apps/appauth/views.py +22 -0
  68. zcore/apps/dynamic_models/__init__.py +2 -0
  69. zcore/apps/dynamic_models/admin.py +3 -0
  70. zcore/apps/dynamic_models/apps.py +28 -0
  71. zcore/apps/dynamic_models/fields/__init__.py +127 -0
  72. zcore/apps/dynamic_models/management/__init__.py +0 -0
  73. zcore/apps/dynamic_models/management/commands/__init__.py +0 -0
  74. zcore/apps/dynamic_models/management/commands/reload_tenant.py +8 -0
  75. zcore/apps/dynamic_models/migrations/__init__.py +0 -0
  76. zcore/apps/dynamic_models/models.py +415 -0
  77. zcore/apps/dynamic_models/permissions.py +19 -0
  78. zcore/apps/dynamic_models/registry.py +23 -0
  79. zcore/apps/dynamic_models/signals.py +14 -0
  80. zcore/apps/dynamic_models/templates/default_landing.html +198 -0
  81. zcore/apps/dynamic_models/tests.py +3 -0
  82. zcore/apps/dynamic_models/urls.py +14 -0
  83. zcore/apps/dynamic_models/views.py +90 -0
  84. zcore/apps/dynamic_models/workspace/__init__.py +0 -0
  85. zcore/apps/dynamic_models/workspace/base.py +450 -0
  86. zcore/apps/dynamic_models/workspace/lifecycle.py +25 -0
  87. zcore/apps/dynamic_models/workspace/wtree.py +34 -0
  88. zcore/apps/object_store/__init__.py +0 -0
  89. zcore/apps/object_store/admin.py +7 -0
  90. zcore/apps/object_store/apps.py +6 -0
  91. zcore/apps/object_store/migrations/0001_initial.py +25 -0
  92. zcore/apps/object_store/migrations/__init__.py +0 -0
  93. zcore/apps/object_store/models.py +62 -0
  94. zcore/apps/object_store/tests.py +3 -0
  95. zcore/apps/object_store/views.py +3 -0
  96. zcore/apps/permissions/__init__.py +0 -0
  97. zcore/apps/permissions/admin.py +9 -0
  98. zcore/apps/permissions/apps.py +6 -0
  99. zcore/apps/permissions/migrations/0001_initial.py +63 -0
  100. zcore/apps/permissions/migrations/0002_policymodel_type_alter_policymodel_expiry.py +26 -0
  101. zcore/apps/permissions/migrations/0003_default_policy.py +24 -0
  102. zcore/apps/permissions/migrations/0004_policymodel_path_alter_policymodel_name_and_more.py +27 -0
  103. zcore/apps/permissions/migrations/__init__.py +0 -0
  104. zcore/apps/permissions/mixin.py +126 -0
  105. zcore/apps/permissions/models.py +110 -0
  106. zcore/apps/permissions/tests.py +3 -0
  107. zcore/apps/permissions/views.py +3 -0
  108. zcore/apps/shared/__init__.py +12 -0
  109. zcore/apps/shared/platformauth/__init__.py +0 -0
  110. zcore/apps/shared/platformauth/abstract_model.py +76 -0
  111. zcore/apps/shared/platformauth/admin.py +6 -0
  112. zcore/apps/shared/platformauth/apps.py +10 -0
  113. zcore/apps/shared/platformauth/auth_backend.py +28 -0
  114. zcore/apps/shared/platformauth/migrations/0001_initial.py +150 -0
  115. zcore/apps/shared/platformauth/migrations/0002_platformusermodel_is_superadmin_and_more.py +33 -0
  116. zcore/apps/shared/platformauth/migrations/__init__.py +0 -0
  117. zcore/apps/shared/platformauth/models.py +200 -0
  118. zcore/apps/shared/platformauth/templates/app_panel/app_panel_login.html +131 -0
  119. zcore/apps/shared/platformauth/tests.py +3 -0
  120. zcore/apps/shared/platformauth/urls.py +29 -0
  121. zcore/apps/shared/platformauth/views.py +38 -0
  122. zcore/apps/shared/tenancy/__init__.py +0 -0
  123. zcore/apps/shared/tenancy/admin.py +8 -0
  124. zcore/apps/shared/tenancy/apps.py +6 -0
  125. zcore/apps/shared/tenancy/management/__init__.py +0 -0
  126. zcore/apps/shared/tenancy/management/commands/__init__.py +0 -0
  127. zcore/apps/shared/tenancy/management/commands/sync_static.py +58 -0
  128. zcore/apps/shared/tenancy/management/commands/ws_makemigration.py +74 -0
  129. zcore/apps/shared/tenancy/management/commands/ws_migrate.py +39 -0
  130. zcore/apps/shared/tenancy/migrations/0001_initial.py +969 -0
  131. zcore/apps/shared/tenancy/migrations/0002_rename_is_default_themesmodel_is_active.py +17 -0
  132. zcore/apps/shared/tenancy/migrations/0003_themesmodel_created_at_themesmodel_created_by_and_more.py +36 -0
  133. zcore/apps/shared/tenancy/migrations/0004_tenantmodel_fav_icon_alter_tenantmodel_logo.py +35 -0
  134. zcore/apps/shared/tenancy/migrations/__init__.py +0 -0
  135. zcore/apps/shared/tenancy/models.py +179 -0
  136. zcore/apps/shared/tenancy/tasks.py +65 -0
  137. zcore/apps/shared/tenancy/templates/app_panel.html +25 -0
  138. zcore/apps/shared/tenancy/templatetags/__init__.py +0 -0
  139. zcore/apps/shared/tenancy/templatetags/zstatic.py +14 -0
  140. zcore/apps/shared/tenancy/tests.py +3 -0
  141. zcore/apps/shared/tenancy/urls.py +6 -0
  142. zcore/apps/shared/tenancy/utils.py +54 -0
  143. zcore/apps/shared/tenancy/views.py +12 -0
  144. zcore/apps/shared/tenancy/workspace_folder_template/cookiecutter.json +3 -0
  145. zcore/apps/shared/tenancy/workspace_folder_template/{{cookiecutter.app_name}}/manifest.json +3 -0
  146. zcore/apps/shared/tenancy/workspace_folder_template/{{cookiecutter.app_name}}/settings.json +6 -0
  147. zcore/apps/tasks/__init__.py +0 -0
  148. zcore/apps/tasks/apps.py +6 -0
  149. zcore/apps/tasks/migrations/0001_initial.py +83 -0
  150. zcore/apps/tasks/migrations/__init__.py +0 -0
  151. zcore/apps/tasks/models.py +80 -0
  152. zcore/apps/tasks/utils.py +105 -0
  153. zcore/assets/app_landing/css/styles.css +302 -0
  154. zcore/assets/app_panel/css/styles.css +675 -0
  155. zcore/assets/app_panel/images/zelthyLogo.svg +3 -0
  156. zcore/assets/app_panel/images/zelthyLogoIpad.svg +8 -0
  157. zcore/assets/app_panel/images/zelthyLogoIphone.svg +8 -0
  158. zcore/assets/app_panel/js/build.v1.0.42.min.js +1 -0
  159. zcore/assets/app_panel/js/build.v1.0.43.min.js +1 -0
  160. zcore/assets/app_panel/js/build.v1.0.44.min.js +1 -0
  161. zcore/assets/js/jquery/3.7.1/jquery.min.js +2 -0
  162. zcore/cli/__init__.py +16 -0
  163. zcore/cli/install_package.py +15 -0
  164. zcore/cli/package_info.py +32 -0
  165. zcore/cli/project_template/manage.py +22 -0
  166. zcore/cli/project_template/project_name/__init__.py +3 -0
  167. zcore/cli/project_template/project_name/asgi.py +16 -0
  168. zcore/cli/project_template/project_name/settings.py +132 -0
  169. zcore/cli/project_template/project_name/urls.py +22 -0
  170. zcore/cli/project_template/project_name/urls_public.py +7 -0
  171. zcore/cli/project_template/project_name/urls_tenants.py +7 -0
  172. zcore/cli/project_template/project_name/wsgi.py +16 -0
  173. zcore/cli/start_project.py +234 -0
  174. zcore/cli/utils.py +24 -0
  175. zcore/config/__init__.py +0 -0
  176. zcore/config/celery.py +18 -0
  177. zcore/config/settings/__init__.py +0 -0
  178. zcore/config/settings/base.py +178 -0
  179. zcore/config/urls_public.py +27 -0
  180. zcore/config/urls_tenants.py +22 -0
  181. zcore/core/__init__.py +1 -0
  182. zcore/core/api/__init__.py +3 -0
  183. zcore/core/api/base.py +55 -0
  184. zcore/core/api/utils.py +28 -0
  185. zcore/core/common_utils.py +36 -0
  186. zcore/core/custom_pluginbase.py +27 -0
  187. zcore/core/generic_views/__init__.py +0 -0
  188. zcore/core/generic_views/base.py +54 -0
  189. zcore/core/internal_requests.py +192 -0
  190. zcore/core/model_mixins.py +33 -0
  191. zcore/core/package_utils.py +195 -0
  192. zcore/core/permissions.py +74 -0
  193. zcore/core/storage_utils.py +77 -0
  194. zcore/core/tasks.py +38 -0
  195. zcore/core/template_loader.py +48 -0
  196. zcore/core/utils.py +100 -0
  197. zcore/middleware/__init__.py +0 -0
  198. zcore/middleware/request.py +45 -0
  199. zcore/middleware/tenant.py +157 -0
@@ -0,0 +1,193 @@
1
+ Copyright (c) Healthlane Technologies Pvt. Ltd. ("Zelthy")
2
+
3
+ Parts of Zelthy's software are licensed as follows:
4
+
5
+ * All content residing under the "docs/" directory of this repository is licensed under
6
+ "Creative Commons: CC BY-SA 4.0 license".
7
+ * All content that resides under the "ee/" directory of this repository, if that
8
+ directory exists, is licensed under the license defined in "enterprise/LICENSE".
9
+ * All client-side JavaScript (when served directly or after being compiled, arranged,
10
+ augmented, or combined), is licensed under the "MIT Expat" license.
11
+ * All third party components incorporated into Zelthy are licensed under
12
+ the original license provided by the owner of the applicable component.
13
+ * Content outside of the above mentioned directories or restrictions above [Zelthy
14
+ Developer's Edition ("Zelthy DE")] is available under the "Apache Version 2.0, January 2004"
15
+ license as defined below.
16
+
17
+
18
+ Apache License
19
+ Version 2.0, January 2004
20
+ http://www.apache.org/licenses/
21
+
22
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
23
+
24
+ 1. Definitions.
25
+
26
+ "License" shall mean the terms and conditions for use, reproduction,
27
+ and distribution as defined by Sections 1 through 9 of this document.
28
+
29
+ "Licensor" shall mean the copyright owner or entity authorized by
30
+ the copyright owner that is granting the License.
31
+
32
+ "Legal Entity" shall mean the union of the acting entity and all
33
+ other entities that control, are controlled by, or are under common
34
+ control with that entity. For the purposes of this definition,
35
+ "control" means (i) the power, direct or indirect, to cause the
36
+ direction or management of such entity, whether by contract or
37
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
38
+ outstanding shares, or (iii) beneficial ownership of such entity.
39
+
40
+ "You" (or "Your") shall mean an individual or Legal Entity
41
+ exercising permissions granted by this License.
42
+
43
+ "Source" form shall mean the preferred form for making modifications,
44
+ including but not limited to software source code, documentation
45
+ source, and configuration files.
46
+
47
+ "Object" form shall mean any form resulting from mechanical
48
+ transformation or translation of a Source form, including but
49
+ not limited to compiled object code, generated documentation,
50
+ and conversions to other media types.
51
+
52
+ "Work" shall mean the work of authorship, whether in Source or
53
+ Object form, made available under the License, as indicated by a
54
+ copyright notice that is included in or attached to the work
55
+ (an example is provided in the Appendix below).
56
+
57
+ "Derivative Works" shall mean any work, whether in Source or Object
58
+ form, that is based on (or derived from) the Work and for which the
59
+ editorial revisions, annotations, elaborations, or other modifications
60
+ represent, as a whole, an original work of authorship. For the purposes
61
+ of this License, Derivative Works shall not include works that remain
62
+ separable from, or merely link (or bind by name) to the interfaces of,
63
+ the Work and Derivative Works thereof.
64
+
65
+ "Contribution" shall mean any work of authorship, including
66
+ the original version of the Work and any modifications or additions
67
+ to that Work or Derivative Works thereof, that is intentionally
68
+ submitted to Licensor for inclusion in the Work by the copyright owner
69
+ or by an individual or Legal Entity authorized to submit on behalf of
70
+ the copyright owner. For the purposes of this definition, "submitted"
71
+ means any form of electronic, verbal, or written communication sent
72
+ to the Licensor or its representatives, including but not limited to
73
+ communication on electronic mailing lists, source code control systems,
74
+ and issue tracking systems that are managed by, or on behalf of, the
75
+ Licensor for the purpose of discussing and improving the Work, but
76
+ excluding communication that is conspicuously marked or otherwise
77
+ designated in writing by the copyright owner as "Not a Contribution."
78
+
79
+ "Contributor" shall mean Licensor and any individual or Legal Entity
80
+ on behalf of whom a Contribution has been received by Licensor and
81
+ subsequently incorporated within the Work.
82
+
83
+ 2. Grant of Copyright 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
+ copyright license to reproduce, prepare Derivative Works of,
87
+ publicly display, publicly perform, sublicense, and distribute the
88
+ Work and such Derivative Works in Source or Object form.
89
+
90
+ 3. Grant of Patent License. Subject to the terms and conditions of
91
+ this License, each Contributor hereby grants to You a perpetual,
92
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
93
+ (except as stated in this section) patent license to make, have made,
94
+ use, offer to sell, sell, import, and otherwise transfer the Work,
95
+ where such license applies only to those patent claims licensable
96
+ by such Contributor that are necessarily infringed by their
97
+ Contribution(s) alone or by combination of their Contribution(s)
98
+ with the Work to which such Contribution(s) was submitted. If You
99
+ institute patent litigation against any entity (including a
100
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
101
+ or a Contribution incorporated within the Work constitutes direct
102
+ or contributory patent infringement, then any patent licenses
103
+ granted to You under this License for that Work shall terminate
104
+ as of the date such litigation is filed.
105
+
106
+ 4. Redistribution. You may reproduce and distribute copies of the
107
+ Work or Derivative Works thereof in any medium, with or without
108
+ modifications, and in Source or Object form, provided that You
109
+ meet the following conditions:
110
+
111
+ (a) You must give any other recipients of the Work or
112
+ Derivative Works a copy of this License; and
113
+
114
+ (b) You must cause any modified files to carry prominent notices
115
+ stating that You changed the files; and
116
+
117
+ (c) You must retain, in the Source form of any Derivative Works
118
+ that You distribute, all copyright, patent, trademark, and
119
+ attribution notices from the Source form of the Work,
120
+ excluding those notices that do not pertain to any part of
121
+ the Derivative Works; and
122
+
123
+ (d) If the Work includes a "NOTICE" text file as part of its
124
+ distribution, then any Derivative Works that You distribute must
125
+ include a readable copy of the attribution notices contained
126
+ within such NOTICE file, excluding those notices that do not
127
+ pertain to any part of the Derivative Works, in at least one
128
+ of the following places: within a NOTICE text file distributed
129
+ as part of the Derivative Works; within the Source form or
130
+ documentation, if provided along with the Derivative Works; or,
131
+ within a display generated by the Derivative Works, if and
132
+ wherever such third-party notices normally appear. The contents
133
+ of the NOTICE file are for informational purposes only and
134
+ do not modify the License. You may add Your own attribution
135
+ notices within Derivative Works that You distribute, alongside
136
+ or as an addendum to the NOTICE text from the Work, provided
137
+ that such additional attribution notices cannot be construed
138
+ as modifying the License.
139
+
140
+ You may add Your own copyright statement to Your modifications and
141
+ may provide additional or different license terms and conditions
142
+ for use, reproduction, or distribution of Your modifications, or
143
+ for any such Derivative Works as a whole, provided Your use,
144
+ reproduction, and distribution of the Work otherwise complies with
145
+ the conditions stated in this License.
146
+
147
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
148
+ any Contribution intentionally submitted for inclusion in the Work
149
+ by You to the Licensor shall be under the terms and conditions of
150
+ this License, without any additional terms or conditions.
151
+ Notwithstanding the above, nothing herein shall supersede or modify
152
+ the terms of any separate license agreement you may have executed
153
+ with Licensor regarding such Contributions.
154
+
155
+ 6. Trademarks. This License does not grant permission to use the trade
156
+ names, trademarks, service marks, or product names of the Licensor,
157
+ except as required for reasonable and customary use in describing the
158
+ origin of the Work and reproducing the content of the NOTICE file.
159
+
160
+ 7. Disclaimer of Warranty. Unless required by applicable law or
161
+ agreed to in writing, Licensor provides the Work (and each
162
+ Contributor provides its Contributions) on an "AS IS" BASIS,
163
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
164
+ implied, including, without limitation, any warranties or conditions
165
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
166
+ PARTICULAR PURPOSE. You are solely responsible for determining the
167
+ appropriateness of using or redistributing the Work and assume any
168
+ risks associated with Your exercise of permissions under this License.
169
+
170
+ 8. Limitation of Liability. In no event and under no legal theory,
171
+ whether in tort (including negligence), contract, or otherwise,
172
+ unless required by applicable law (such as deliberate and grossly
173
+ negligent acts) or agreed to in writing, shall any Contributor be
174
+ liable to You for damages, including any direct, indirect, special,
175
+ incidental, or consequential damages of any character arising as a
176
+ result of this License or out of the use or inability to use the
177
+ Work (including but not limited to damages for loss of goodwill,
178
+ work stoppage, computer failure or malfunction, or any and all
179
+ other commercial damages or losses), even if such Contributor
180
+ has been advised of the possibility of such damages.
181
+
182
+ 9. Accepting Warranty or Additional Liability. While redistributing
183
+ the Work or Derivative Works thereof, You may choose to offer,
184
+ and charge a fee for, acceptance of support, warranty, indemnity,
185
+ or other liability obligations and/or rights consistent with this
186
+ License. However, in accepting such obligations, You may act only
187
+ on Your own behalf and on Your sole responsibility, not on behalf
188
+ of any other Contributor, and only if You agree to indemnify,
189
+ defend, and hold each Contributor harmless for any liability
190
+ incurred by, or claims asserted against, such Contributor by reason
191
+ of your accepting any such warranty or additional liability.
192
+
193
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,114 @@
1
+ Metadata-Version: 2.1
2
+ Name: zango
3
+ Version: 0.2.0a0
4
+ Summary: Zango: multi-tenant Django framework for building business apps
5
+ Home-page: https://github.com/Healthlane-Technologies/zelthy3
6
+ Author: Zelthy ("Healthlane Technologies")
7
+ Author-email: maintainers@zelthy.com
8
+ License: Apache License 2.0
9
+ Classifier: Framework :: Django
10
+ Classifier: Programming Language :: Python
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: django ==4.2.11
14
+ Requires-Dist: psycopg2-binary
15
+ Requires-Dist: django-tenants
16
+ Requires-Dist: djangorestframework
17
+ Requires-Dist: django-rest-knox
18
+ Requires-Dist: celery ==5.3.1
19
+ Requires-Dist: flake8 ==6.1.0
20
+ Requires-Dist: django-cors-headers ==4.2.0
21
+ Requires-Dist: pluginbase ==1.0.1
22
+ Requires-Dist: click ==8.1.7
23
+ Requires-Dist: phonenumberslite ==8.13.23
24
+ Requires-Dist: django-phonenumber-field ==7.1.0
25
+ Requires-Dist: django-redis ==5.3.0
26
+ Requires-Dist: django-cachalot ==2.6.1
27
+ Requires-Dist: django-debug-toolbar ==4.2.0
28
+ Requires-Dist: django-formtools ==2.4.1
29
+ Requires-Dist: django-crispy-forms ==2.0
30
+ Requires-Dist: crispy-bootstrap5 ==0.7
31
+ Requires-Dist: cookiecutter ==2.3.0
32
+ Requires-Dist: boto3 ==1.28.52
33
+ Requires-Dist: botocore ==1.31.52
34
+ Requires-Dist: django-storages ==1.14
35
+ Requires-Dist: django-celery-beat ==2.5.0
36
+ Requires-Dist: django-smtp-ssl ==1.0
37
+ Requires-Dist: PyJWT ==2.8.0
38
+ Requires-Dist: XlsxWriter ==3.1.9
39
+ Requires-Dist: pydub ==0.25.1
40
+ Requires-Dist: django-celery-results ==2.5.1
41
+ Requires-Dist: django-environ ==0.11.2
42
+ Requires-Dist: pytz ==2024.1
43
+ Requires-Dist: django-session-security ==2.6.7
44
+ Requires-Dist: beautifulsoup4 ==4.12.3
45
+ Requires-Dist: python3-saml ==1.16.0
46
+
47
+ <h1 align="center">
48
+ <a href="https://www.zelthy.com/">
49
+ <img src="https://yt3.googleusercontent.com/e1HArJ9U7Pj8MIf2MKGYW_6GGqdvwUTucgR6gs5u7LaBvAIfZT1INRASf0fOMC7ISVTDYqMPXw=s176-c-k-c0x00ffffff-no-rj" alt="ZCore" width="80px">
50
+ </a>
51
+ </h1>
52
+
53
+
54
+ [Website](https://www.zelthy.com/framework) • [Getting Started](https://docs.zelthy.com/docs/category/getting-started) • [Docs](https://docs.zelthy.com/)
55
+
56
+
57
+ [![PyPI version](https://badge.fury.io/py/zcorepy.svg)](https://badge.fury.io/py/zcorepy)
58
+ ![docs](https://img.shields.io/github/actions/workflow/status/Healthlane-Technologies/zelthy3/docs.yml?branch=main)
59
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
60
+
61
+
62
+ ## ZCore is an open source multi-tenant Django framework for building enterprise apps
63
+
64
+ - Quickly build enterprise ready apps, leveraging the power of Django and ZCore package ecosystem
65
+ - Host multiple apps on a single deployment with complete isolation - Each app can have its own data models and workflows
66
+ - Built-in user management and user roles
67
+ - Rich ecosystem of packages - Leverage the free packages to develop most of your app workflows.
68
+ - Granular policy and permission framework linking user roles with views and models
69
+ - Open-core with all non-enterprise features under the Apache License allowing commercial and private use.
70
+
71
+
72
+ [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Healthlane-Technologies/zelthy3-gitpod-sandbox-official/)
73
+
74
+ ![ZCore High Level Architecture](https://docs.zelthy.com/assets/images/Architecture_Diagram-e6eb1b24fca0554edca1110a7de26449.png)
75
+
76
+ #### App Panel - Central hub to manage all your apps
77
+ Perform tasks such as configuring permissions, managing user roles, and much more.
78
+
79
+ ![ZCore App Panel](https://github.com/Healthlane-Technologies/zelthy3/assets/22682748/b593a821-ec1d-4082-a590-e5ed52cb0c28)
80
+
81
+ #### Drastically reduce your per app cost through ZCore’s multi-tenant approach:
82
+
83
+ ZCore redefines multi-tenancy by enabling multiple different apps to run on a single server. Say goodbye to the limitations of traditional scaling methods. With our platform, you can run multiple different applications on a single server, which helps in keeping the cost in check.
84
+
85
+ ![ZCore Scaling](https://zelthy-initium-production-static.s3.amazonaws.com/static/zelthymain/react-images/cost-effective-scaling.svg)
86
+
87
+
88
+ #### Getting Started:
89
+ - [Docker](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/docker)
90
+ - [Manual](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/manual)
91
+ - [Gitpod](https://docs.zelthy.com/docs/documentation/getting-started/installing-zelthy/gitpod)
92
+
93
+ #### Free Packages
94
+ A few essential packages are freely available. These packages enable development of a wide variety of applications and are available for installation from the App Panel.
95
+ - [Login](https://docs.zelthy.com/login)
96
+ - [Frames](https://docs.zelthy.com/frame)
97
+ - [CRUD](https://docs.zelthy.com/crud)
98
+ - [Workflow](https://docs.zelthy.com/workflow)
99
+
100
+
101
+ #### Contributing:
102
+ You can contribute to ZCore in many ways, including:
103
+ - Leave your star in this repo.
104
+ - Share with your colleagues and friends
105
+ - Share your suggestions on our slack channel
106
+ - Create issues if you find something not working as expected or if you have suggestions on enhancements.
107
+ - Provide pull requests for any open issues
108
+
109
+
110
+ #### Official Documentation: https://docs.zelthy.com/
111
+
112
+
113
+
114
+
@@ -0,0 +1,199 @@
1
+ zcore/__init__.py,sha256=WrVA07SoXVYZbGaWv0UmU58lTTnSI2XZXjSjHzGsbKY,41
2
+ zcore/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ zcore/api/app_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ zcore/api/app_auth/urls.py,sha256=Etlf3uYaSQZI120WlNQSVSLYc1tQWxzTyHXD4thYwRw,156
5
+ zcore/api/app_auth/profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ zcore/api/app_auth/profile/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ zcore/api/app_auth/profile/v1/serializers.py,sha256=ujYGCf0jGjo7H3Xgmg6mGmrPg8wXSN9A4eEcNuDl6TY,237
8
+ zcore/api/app_auth/profile/v1/urls.py,sha256=FBm6QC_9Tlr6ZJFNF9IEguMnCO2mGQm5Zw8Yt1HaH3U,281
9
+ zcore/api/app_auth/profile/v1/utils.py,sha256=L7KrwHAzD3l6mXGP3Wrqs47XS4yi00X-OgATbQU36yI,5419
10
+ zcore/api/app_auth/profile/v1/views.py,sha256=xSTvGCVXdnWwyle5TKdUYENxpfy_fdNUKtFAtYee2u0,2753
11
+ zcore/api/platform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ zcore/api/platform/urls.py,sha256=TAwRBO66yHAaFZ-xtlKUOrkZoNns2QlLgqvADFnsC-M,291
13
+ zcore/api/platform/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ zcore/api/platform/auth/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ zcore/api/platform/auth/v1/serializers.py,sha256=OIXoYyekrhz3D3xyC4Lt5nT1pN6ceuJmAv4l2b6Z-dk,558
16
+ zcore/api/platform/auth/v1/urls.py,sha256=Rf3neh3edMUEai1ayZTJBgxvIQD5a8Ev8lgjFN8rZNo,537
17
+ zcore/api/platform/auth/v1/views.py,sha256=_nHFRFu3e_upNXlkDq2xBHsmPSuGWFAswyjvUKxTFq4,6079
18
+ zcore/api/platform/codeassist/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ zcore/api/platform/codeassist/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ zcore/api/platform/codeassist/v1/urls.py,sha256=CJ_DqLYrZjVPGODrftA2i_1RZT1jQwiBEBiSPAj6qxg,369
21
+ zcore/api/platform/codeassist/v1/utils.py,sha256=2zhJx-ZrcMqmScrmSaE0v1jhSS-yTwfbPOJ63nTjn00,254
22
+ zcore/api/platform/codeassist/v1/views.py,sha256=JlVv5AohQfvxwtJwZ7z0S1Le0oLDK3fGDmUL-VDLVZM,11926
23
+ zcore/api/platform/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ zcore/api/platform/packages/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ zcore/api/platform/packages/v1/urls.py,sha256=rYI9mPogvevzMSb1l9RZcW88sC1EdrpzuvROfXDdcz8,217
26
+ zcore/api/platform/packages/v1/views.py,sha256=Snk0c_Y5-3PNYeEoNj5koGfe_eGOdy0nc2oAvIjXvvo,2601
27
+ zcore/api/platform/permissions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ zcore/api/platform/permissions/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ zcore/api/platform/permissions/v1/serializers.py,sha256=RHazkxhrFGILOhdLooLbJfYawzoTbgHs_pD-AjNiOWU,1945
30
+ zcore/api/platform/permissions/v1/urls.py,sha256=ucwCb_9TRulg8nXBi8lxmvjRygnYunnCoqqt3vgBxZQ,583
31
+ zcore/api/platform/permissions/v1/views.py,sha256=3Kqq1_y21v2LhukmqLHmCg_Kx82SyRRRSISfrRj7boE,6507
32
+ zcore/api/platform/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ zcore/api/platform/tasks/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ zcore/api/platform/tasks/v1/serializers.py,sha256=7RrgoTXAhg5bqDkx-6Qprns1VafrQOthP5PjKmqp8c0,1366
35
+ zcore/api/platform/tasks/v1/urls.py,sha256=XR7PqlF-lku_tHPLwuzmvL9pbh6V1KGnsd9U-ZqGX1I,213
36
+ zcore/api/platform/tasks/v1/views.py,sha256=o4Qd7e6x62V6VWL0kM_DInlS_91gPkcdz3B0V-f372M,4914
37
+ zcore/api/platform/tenancy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ zcore/api/platform/tenancy/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ zcore/api/platform/tenancy/v1/serializers.py,sha256=E0CRkldr29SlYu2GQhcjv9N48HAzg5kH-hAyaUOR9Ak,4832
40
+ zcore/api/platform/tenancy/v1/urls.py,sha256=HVYkNaK3JCk6fNBpb9goXliimtrnWgivsTXGEwCf66k,1926
41
+ zcore/api/platform/tenancy/v1/views.py,sha256=_pEZbsKnXxzFw57pLA55QCwfyofpU8GlkAwj6Wj-gGY,21220
42
+ zcore/apps/__init__.py,sha256=Vwa1R8BjJz0cetbKjoL4IsdQ0bWFb66BPP2yYoIACEA,176
43
+ zcore/apps/appauth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ zcore/apps/appauth/admin.py,sha256=lMPWITlzNnEoU2l2yiQaQE52fOp91iD7DhzwjWxvdAM,124
45
+ zcore/apps/appauth/apps.py,sha256=vE5rNTftv5eiOpud5QpWkDkjT4P5ZL9xJBbS0Kl6zxc,221
46
+ zcore/apps/appauth/auth_backend.py,sha256=7PezvZLZHUU8wuruIvSngblztf9AAZuQ6dqRRN-PWbE,929
47
+ zcore/apps/appauth/models.py,sha256=I8cNThcyQSkeI11fjz-w5siLfur6-RLjBFnqZQi8vzs,9188
48
+ zcore/apps/appauth/serializers.py,sha256=vnEC5u6snd2mpUWuaACYaiYwNftFlt04diB5gr-KiyQ,356
49
+ zcore/apps/appauth/signals.py,sha256=SmGcGpjuG7jotVjbQ0sbZ9b6lZ-GPsfXp9-xJRraHDs,477
50
+ zcore/apps/appauth/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
51
+ zcore/apps/appauth/urls.py,sha256=yJyK7sssfIGp9QadwipcMbmwzpYjHoK6HxRJB_d3RgM,203
52
+ zcore/apps/appauth/views.py,sha256=CXuzf2C-GFxfZXqh1CQRnWY3sJuIcX7glXVwdjjq21g,682
53
+ zcore/apps/appauth/migrations/0001_initial.py,sha256=rIC_TJlFJtIClXOpUaPXfkkGMAw6cEmrdXY1ZypqnNY,7465
54
+ zcore/apps/appauth/migrations/0002_default_user_roles.py,sha256=h5E0yl6NYc3q5Mz4HTQBpQkIpKXAWotaQFeMD07kLyI,618
55
+ zcore/apps/appauth/migrations/0003_remove_userrolemodel_temp_field_appusermodel_mobile_and_more.py,sha256=EXJivIxuC-Tmy1vk50szivyKLXycRGxGqWDzlf_odeo,1124
56
+ zcore/apps/appauth/migrations/0004_oldpasswords.py,sha256=_MemDu87RfNsN0ynT18vRMHwnnikPnbLFEVxvKDZVQE,1633
57
+ zcore/apps/appauth/migrations/0005_remove_appusermodel_user.py,sha256=EDbEPikaqstT2wali1XwKi_WXy5nD3YbxcQ6UO7zYbQ,325
58
+ zcore/apps/appauth/migrations/0006_appusermodel_app_objects.py,sha256=7K9319gw6DbULHUW9anpjrjHar5mytKxhSfBg_3HiO0,396
59
+ zcore/apps/appauth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ zcore/apps/appauth/templates/app.html,sha256=mdx1jmZHFXqF0TslhBTMEd90etlgC8na7XFVw1cfx_c,738
61
+ zcore/apps/appauth/templates/app_login_signup.html,sha256=U10dIqPigdiVwXBjbFxRDLyLSkM_31rBubB0rixH1e8,919
62
+ zcore/apps/dynamic_models/__init__.py,sha256=-QOv_3DIppG9NCGoNx0n1sfi3eJccexiG7_NI2J6vAM,59
63
+ zcore/apps/dynamic_models/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
64
+ zcore/apps/dynamic_models/apps.py,sha256=5CLOGZ8hniXF2Ui_xYA9-BIWWIGRdZ_5lvj-RHGab9o,950
65
+ zcore/apps/dynamic_models/models.py,sha256=xpxgbco8nVAFD8XBRuq56HOtKqLGd3zyaiywKMqp3-k,15486
66
+ zcore/apps/dynamic_models/permissions.py,sha256=3AqlRJDO9gvjDZsmHRVBcXtllYhANfRepI9ZXGeqr5I,567
67
+ zcore/apps/dynamic_models/registry.py,sha256=QcBHSwLyoktZRE4KFd3ttpj559OYaULdUlT2lsA0cHM,350
68
+ zcore/apps/dynamic_models/signals.py,sha256=4Be4dIQtSaFs4RJcKysWLm6Oxm58dHBWkiEWZ4JTs7U,385
69
+ zcore/apps/dynamic_models/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
70
+ zcore/apps/dynamic_models/urls.py,sha256=4c3_q-IIc0Edzdfhuww74NlIQqMGKILry6clb6TDXho,224
71
+ zcore/apps/dynamic_models/views.py,sha256=Y04bXk7KGYThEp8Ym9r4aO93Ub_3u_KYNkGK5QJrCJ0,3141
72
+ zcore/apps/dynamic_models/fields/__init__.py,sha256=ibPVc5kRMZEzGPQuGtVgkwIXOYJENkihcjWdp62dONo,4411
73
+ zcore/apps/dynamic_models/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ zcore/apps/dynamic_models/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ zcore/apps/dynamic_models/management/commands/reload_tenant.py,sha256=yLxDrn2kMGE0Ng3ALw9_bw3ZgPDmwr6cAfHOwg9li0Q,326
76
+ zcore/apps/dynamic_models/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ zcore/apps/dynamic_models/templates/default_landing.html,sha256=D-Hsg_Hm9GNhXMgFZIfI30ZAyUXy8vm_8jdC-h9nBL8,29339
78
+ zcore/apps/dynamic_models/workspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ zcore/apps/dynamic_models/workspace/base.py,sha256=-qWlynFm1YJPc3MxLFBMVFs_x8YwH2S1pACuu3NgerQ,17473
80
+ zcore/apps/dynamic_models/workspace/lifecycle.py,sha256=Wcf-UX87quVMQXS2rRC_8MNF4oewAQYsO9UhfZdRVCs,326
81
+ zcore/apps/dynamic_models/workspace/wtree.py,sha256=jxC30wcnUbOgv7010Pc14MMj2jC1ZSIzfKoToVkja2o,897
82
+ zcore/apps/object_store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ zcore/apps/object_store/admin.py,sha256=OMEEuIF_5l8GmT_YILcljnbUBhvcBKDNiPYfgNH_CGQ,130
84
+ zcore/apps/object_store/apps.py,sha256=-d_Cn4PlJ_6G7OPyx3Ek2G2aKybZJTGUJ4dkS96wqd4,166
85
+ zcore/apps/object_store/models.py,sha256=3ul-nKI5T1c3KJmKwy2esVmiUv5HUdWSwndTk5V9djc,2485
86
+ zcore/apps/object_store/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
87
+ zcore/apps/object_store/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
88
+ zcore/apps/object_store/migrations/0001_initial.py,sha256=W53hSdUmoUIknGycb4JH2sJymAKiooMFUPiNrILGsPA,784
89
+ zcore/apps/object_store/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ zcore/apps/permissions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ zcore/apps/permissions/admin.py,sha256=zWh1IqYMyoOPfCwGBrNvN1QC-o3eG6CNO79c0PkabDU,242
92
+ zcore/apps/permissions/apps.py,sha256=nSuayPMZlAyfuCS8AOH10UuL-_JcqbUCVrEnyeMi9RA,165
93
+ zcore/apps/permissions/mixin.py,sha256=tsq_5QJY-D9uDz1dB7aUrwxsaKiSy3ddVmZdv4UaX_k,5050
94
+ zcore/apps/permissions/models.py,sha256=m4xFBicZEi5HStYFO0ubercScnAsv6IXEZ092j8pNIo,3748
95
+ zcore/apps/permissions/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
96
+ zcore/apps/permissions/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
97
+ zcore/apps/permissions/migrations/0001_initial.py,sha256=dTVXL7WYd3aXf74NOyY-TR62j7AEJ41pSkC3JEkEHNE,3203
98
+ zcore/apps/permissions/migrations/0002_policymodel_type_alter_policymodel_expiry.py,sha256=QeFNmgbIpPrgRADv7Htz3ZMZWmAKaeX1xjEzc1Esg-k,678
99
+ zcore/apps/permissions/migrations/0003_default_policy.py,sha256=-eY9LrrSdwDcz85VhmzR8M3VH_pyKOusb6xayIoYn8A,669
100
+ zcore/apps/permissions/migrations/0004_policymodel_path_alter_policymodel_name_and_more.py,sha256=LtQ-sLYOhnHnszRjbh73F7hB4xsfDeZMbfbcnm429ic,762
101
+ zcore/apps/permissions/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ zcore/apps/shared/__init__.py,sha256=HT3TLizQlWmUvIpMfIQVmhr-JyhO0e1MVS63Iabs1vg,454
103
+ zcore/apps/shared/platformauth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ zcore/apps/shared/platformauth/abstract_model.py,sha256=jf7R3h0ebmLm6eA1szniZXNdM3UNmTOcY-aIhHropwI,2578
105
+ zcore/apps/shared/platformauth/admin.py,sha256=6RuHbv8pU5iZhCcj7M6zqr54BOYSJxjNoYnK4yP1Pb4,140
106
+ zcore/apps/shared/platformauth/apps.py,sha256=vc5Ji6QW8xe-oeJpjpiYmkNSZOn-p6iZFQa3L5Au8ys,267
107
+ zcore/apps/shared/platformauth/auth_backend.py,sha256=xFklnVGEIKIXY4ck_0sGMVCK_HcUy9Qlfk7COT24cUQ,940
108
+ zcore/apps/shared/platformauth/models.py,sha256=rzUBi8ztG7ua_ZLQSdpfI0hJ4dbaO9GkrsGrXcZdpGk,7168
109
+ zcore/apps/shared/platformauth/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
110
+ zcore/apps/shared/platformauth/urls.py,sha256=4vsQHw9znn5dfu4eytzdJohwqZ3lHmrsFhUhDrHPzks,664
111
+ zcore/apps/shared/platformauth/views.py,sha256=Q_ueh2piCJ8S15cqWGa_DCmx1Js3uG3030OBhf84hWk,1115
112
+ zcore/apps/shared/platformauth/migrations/0001_initial.py,sha256=31bU6My-Hu3jfGmtU6SPw5L3I9xB16jwS6Q3SIW1T2Y,5327
113
+ zcore/apps/shared/platformauth/migrations/0002_platformusermodel_is_superadmin_and_more.py,sha256=wfjUSMMp4UkCegVxMCAU-_GW3d0hvNl404CKSqOMqjk,914
114
+ zcore/apps/shared/platformauth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ zcore/apps/shared/platformauth/templates/app_panel/app_panel_login.html,sha256=GyLsUgvAsmo-z1oRJYweMfisyqjNSn_-OwLlhmrAyzU,4939
116
+ zcore/apps/shared/tenancy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
+ zcore/apps/shared/tenancy/admin.py,sha256=wpC12vWhb7AyARHcs9sUiu3j7yZLNmc-nmsszEP6QdU,180
118
+ zcore/apps/shared/tenancy/apps.py,sha256=E0_xbLzk9OZAgKmVOZfds9mkG7j0AlulxVgOBNxw_nM,161
119
+ zcore/apps/shared/tenancy/models.py,sha256=6Cie5jwx8n9wQs-5beBDl1UZpYWVp9Q-5jzdCivNmXs,5728
120
+ zcore/apps/shared/tenancy/tasks.py,sha256=4V46NI3l2R7xzJmoSYDKoMlX9YF22h2CRImZZHVIdVE,1890
121
+ zcore/apps/shared/tenancy/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
122
+ zcore/apps/shared/tenancy/urls.py,sha256=MyfmVVvrH-QI_9xZux1RgbnAIIv7yyCJhLZX98NLdpU,147
123
+ zcore/apps/shared/tenancy/utils.py,sha256=nGtXNzIzmP1IKSTfcABAS-231kuQTg_VyKYjniM8_Mo,1546
124
+ zcore/apps/shared/tenancy/views.py,sha256=1qDlgJguyNwzWrWgwaZBXX762JzuqSXL1cPujeKXAvo,383
125
+ zcore/apps/shared/tenancy/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ zcore/apps/shared/tenancy/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
+ zcore/apps/shared/tenancy/management/commands/sync_static.py,sha256=aXNdLfeloRPiGlAJfqnSOUyX6k0OJ6rvxi7VsjwNZVQ,2263
128
+ zcore/apps/shared/tenancy/management/commands/ws_makemigration.py,sha256=Ziiw2pIPcnvq8BomhhtQJ3j3HkRZC68Y8vLjk57cKWQ,2780
129
+ zcore/apps/shared/tenancy/management/commands/ws_migrate.py,sha256=PQLs5nQbGd6Z9LH7WYwA38ZW0cy4AWeIczfwSdNQs1c,1457
130
+ zcore/apps/shared/tenancy/migrations/0001_initial.py,sha256=J8aNUfXnWWWzS7DMd2jrhcmqVVPZZmH2RscL1bl08V8,54320
131
+ zcore/apps/shared/tenancy/migrations/0002_rename_is_default_themesmodel_is_active.py,sha256=d-EP5tea1CVJl4AbmJBv7iyBhuVeOlJ9hSWCYyBuyOk,363
132
+ zcore/apps/shared/tenancy/migrations/0003_themesmodel_created_at_themesmodel_created_by_and_more.py,sha256=OCtpXXellHfE6FAmriqoaYTAgjj08DDN1PLMepOPuCE,1095
133
+ zcore/apps/shared/tenancy/migrations/0004_tenantmodel_fav_icon_alter_tenantmodel_logo.py,sha256=qp0OXbfOWhKrw_l9d0N1xMJOaOyXznRX59N1ow0kArI,1136
134
+ zcore/apps/shared/tenancy/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ zcore/apps/shared/tenancy/templates/app_panel.html,sha256=P9MQ4nV2dc-LHsRSbjzNAPvfluix4m9lxkz9BVtHEHM,676
136
+ zcore/apps/shared/tenancy/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ zcore/apps/shared/tenancy/templatetags/zstatic.py,sha256=WzEKbCF9Y8dKqlJ5Jacv5a2j-p_egcx92I9MsbB4qsQ,560
138
+ zcore/apps/shared/tenancy/workspace_folder_template/cookiecutter.json,sha256=jT8cJGQjaeaL0SFLbTRSJ9XUpDteHt1Ou-tMpXWknc4,30
139
+ zcore/apps/shared/tenancy/workspace_folder_template/{{cookiecutter.app_name}}/manifest.json,sha256=Po8BsMcgmTN_Os459d68MSD0507NV0IkfYcoNY3kUfE,22
140
+ zcore/apps/shared/tenancy/workspace_folder_template/{{cookiecutter.app_name}}/settings.json,sha256=oqgUcRGB6gDeroibxVqn5-JVuaoESvxKPizMdWe_wbg,93
141
+ zcore/apps/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
+ zcore/apps/tasks/apps.py,sha256=MSgmCeGU7y7ls6d51htpq_tEx59CUkiJ7cS55pY2TYw,153
143
+ zcore/apps/tasks/models.py,sha256=kmQV7JMafzRG0IYAF5d7BeiJZH1ZRtC_AxY5zCeQ2ls,2647
144
+ zcore/apps/tasks/utils.py,sha256=cI4JvJqxAnL1dYdtXWk_uQMfKDoor9qUWbBsKfNRn8Y,2649
145
+ zcore/apps/tasks/migrations/0001_initial.py,sha256=TWBIoiAGyk5PTuuidyHUwqMcDIMNFzGx2Q5K_7CKB-I,2952
146
+ zcore/apps/tasks/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ zcore/assets/app_landing/css/styles.css,sha256=D64LeniiYTJ4G2yEnrefTR_x7Q3KUIJcHIw_JzM7HDo,5763
148
+ zcore/assets/app_panel/css/styles.css,sha256=huyAoYju4BWN-Ic4UwHPXK3p4Pys2fwcpzmQ2pTQLwI,10247
149
+ zcore/assets/app_panel/images/zelthyLogo.svg,sha256=sUw7BPsh7rFCb8lL5K1SFbnAGYm5qlbm7V-3fdL5eis,3499
150
+ zcore/assets/app_panel/images/zelthyLogoIpad.svg,sha256=t3HofDhrXgYjBuqkwdVK6maQ3uSKZNxwUs9WYINGmTQ,3906
151
+ zcore/assets/app_panel/images/zelthyLogoIphone.svg,sha256=AbGr1QeQ36iOBDLkDCZvWcEfG6sBnzUKp0vy6AP3D9I,3913
152
+ zcore/assets/app_panel/js/build.v1.0.42.min.js,sha256=4F3lv2m2GvuMf2l17-dVo1hbdMP7ABb58I3eJVVtpyY,6158509
153
+ zcore/assets/app_panel/js/build.v1.0.43.min.js,sha256=9vn5dU8BbjaO8PmCtaVRwFHF_qvPlR9K4JZb-000CiU,6158490
154
+ zcore/assets/app_panel/js/build.v1.0.44.min.js,sha256=mORwbrCSDv17gRHXD4o_tSpllDhR3Ic5zbMW0UUg8E0,6158320
155
+ zcore/assets/js/jquery/3.7.1/jquery.min.js,sha256=PnUB0Vw2MOeRyLIDkuud7jGp9lzj793nbO9ccQFBqyQ,87532
156
+ zcore/cli/__init__.py,sha256=hDajNMH_6qZgl4weOVDPCU8rQk-7FkyvImcJEskqPr0,331
157
+ zcore/cli/install_package.py,sha256=v_m4-7Dxk_SjGGuW7GTNrGlM-WYU2j_x5awuuygD-qQ,617
158
+ zcore/cli/package_info.py,sha256=ElW6Hqr-wtAFOBSZIUqATPGniiZQ7vTeU8qK47pVce0,1201
159
+ zcore/cli/start_project.py,sha256=BQeMGQ1KZ-GsNisHdNE-01IBVj5gKKjnEKuE_fKVzh4,7084
160
+ zcore/cli/utils.py,sha256=S1TzWXGZBQHMyMsdMtXpl80y99PjFTRpmVDEBwcYvO8,688
161
+ zcore/cli/project_template/manage.py,sha256=WmnRYkNu8jcpTbtisTKIaXMtAWfmf2AjV43I3c24oHA,672
162
+ zcore/cli/project_template/project_name/__init__.py,sha256=UmynMcTvRI0mM1fepspysQIT7DhbXA7GwCIs2PqaVeU,76
163
+ zcore/cli/project_template/project_name/asgi.py,sha256=Z9VrEP6WAeiDVkfq-yaDQijmzkQYTrt7Pq9eSNbv8UE,404
164
+ zcore/cli/project_template/project_name/settings.py,sha256=XDGa9SnYLd8b88t9cwMhwwb8yBmLYIJpKpDCgrO3rEc,3713
165
+ zcore/cli/project_template/project_name/urls.py,sha256=D1CkG9bdvH1yJu4uDmg2CfN0G75rmbxWNCAxQL7yw1E,767
166
+ zcore/cli/project_template/project_name/urls_public.py,sha256=4NtB8wNit8L77mO4D3_1vNa7DgHmEY3FMZJm_icGxxs,179
167
+ zcore/cli/project_template/project_name/urls_tenants.py,sha256=rKvCxm97JutBbC8ggTH4qCBBlWoCzU9HScNG5r4gqho,179
168
+ zcore/cli/project_template/project_name/wsgi.py,sha256=WZk8OId75teLL5uUdzZ--nWtXaPlspLnMRlh4w0YH6Y,404
169
+ zcore/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ zcore/config/celery.py,sha256=5LM4gDS6QdeinjVlIRHlo8ynJvDD5tH8BzEks65Gpn0,552
171
+ zcore/config/urls_public.py,sha256=gmlNlD5FmW0y2I264maX3A7YzsdDqNq9s4YqpLjdM5Q,856
172
+ zcore/config/urls_tenants.py,sha256=Dvhju8mT4iPLM8OqLqEz6Qe7pjuh0vQ6S0B_p-sPqEA,708
173
+ zcore/config/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
+ zcore/config/settings/base.py,sha256=xJiJ1t8oL6qb8MEXEvCiH3PgCaw4QCLKBhQWfGMEeS4,4940
175
+ zcore/core/__init__.py,sha256=FkrDy2NFCcRjLja8GRVTGdU1tm6-TTUfYKFplYiHqhs,39
176
+ zcore/core/common_utils.py,sha256=kHYz5V6AdIJnpTrHWtqXzjHPNNxYZfusZnKOIpjowRk,1097
177
+ zcore/core/custom_pluginbase.py,sha256=TVwHn_pklyUpBmGhmyV17l8P4pR04MtV-v4B1sg0Chc,810
178
+ zcore/core/internal_requests.py,sha256=pGBvr9TQownopiAzjLuEqTTCyVt2lYRXjMYSNtJf6Dk,5955
179
+ zcore/core/model_mixins.py,sha256=o6iBN27NgBAUBFWSw6tZdqLVka9JR0bhA-r3ITy7Fos,1096
180
+ zcore/core/package_utils.py,sha256=H-nxrCJMWd2xiSn-ErYhiioVWTrp5BaYmLISuIYUpOI,6624
181
+ zcore/core/permissions.py,sha256=lH73BKZ_8uEMYxRATkrJjGKl37wn8uIqw4jPyApk7AY,2576
182
+ zcore/core/storage_utils.py,sha256=JyWyZrBu-XvjEPLY-rI93YgVImG4-Dh0ZS2z726OfiE,2100
183
+ zcore/core/tasks.py,sha256=KkKtadslfQVPOy18ZvWGKSfDqXJgL_-4gCTxEcXLqHQ,1237
184
+ zcore/core/template_loader.py,sha256=5Qe6fBoaStM8hYSgf9GWISVffyetYN_c8mw9Y6LoRqQ,1803
185
+ zcore/core/utils.py,sha256=L_eo9eYtT02aSmgegvHVTaT2fWsvoEWUxRm1Xlc7onE,3014
186
+ zcore/core/api/__init__.py,sha256=ZTm2bH6gk6lnkFfiwLKD9LbnR_Ge98w3DsrSmchYJnk,200
187
+ zcore/core/api/base.py,sha256=Pm5uKUBIHPTJpHUcA6HS0QH7RHvD6KYIFsMTT-HhsMM,2104
188
+ zcore/core/api/utils.py,sha256=CzaXIPHSbPDMD9q2OALXr_wH8MQf0hWWa6JzFqo7eiw,846
189
+ zcore/core/generic_views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ zcore/core/generic_views/base.py,sha256=jBrsGEgqRPn1h0lPVHEtIgXo0fviiiSl0YO6gqpQfHU,1538
191
+ zcore/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
192
+ zcore/middleware/request.py,sha256=NEZbweN1n94uEwjn3P7mY7vz4vc1Kw5a4DioNEHrv7o,1772
193
+ zcore/middleware/tenant.py,sha256=roZr5NFcy-dj5xfK6xd-Ik_Nqf8aGp8rPoeOCPwwClU,5455
194
+ zango-0.2.0a0.dist-info/LICENSE,sha256=KDrUVmwJ1B1TP2lZAAbLoatAKs_iThPJ-DtfveXBm-A,10878
195
+ zango-0.2.0a0.dist-info/METADATA,sha256=IXZ-RvX6NdTbH0CvHGihx4im1VqHjOtlRVrJ8cHuW44,5145
196
+ zango-0.2.0a0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
197
+ zango-0.2.0a0.dist-info/entry_points.txt,sha256=XsftNvmfAsDXm7uyeDGUNFrNBE-nRMrtmi02Httwdn4,40
198
+ zango-0.2.0a0.dist-info/top_level.txt,sha256=EIzl5ppgsIzWhoNRppEBkx6j7zIpiB1cuayybH5QsM0,6
199
+ zango-0.2.0a0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ zcore = zcore.cli:cli
@@ -0,0 +1 @@
1
+ zcore
zcore/__init__.py ADDED
@@ -0,0 +1 @@
1
+ from zcore.core import internal_requests
zcore/api/__init__.py ADDED
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,9 @@
1
+ from rest_framework import serializers
2
+
3
+ from zcore.apps.appauth.models import AppUserModel
4
+
5
+
6
+ class ProfileSerializer(serializers.ModelSerializer):
7
+ class Meta:
8
+ model = AppUserModel
9
+ fields = ["name", "email", "mobile"]
@@ -0,0 +1,10 @@
1
+ from django.urls import re_path
2
+
3
+ from .views import ProfileViewAPIV1, PasswordChangeViewAPIV1
4
+
5
+ urlpatterns = [
6
+ re_path(
7
+ r"change_password", PasswordChangeViewAPIV1.as_view(), name="change_password"
8
+ ),
9
+ re_path(r"", ProfileViewAPIV1.as_view(), name="profile"),
10
+ ]