everysk-lib 1.6.1504__tar.gz

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 (194) hide show
  1. everysk_lib-1.6.1504/LICENSE.txt +9 -0
  2. everysk_lib-1.6.1504/PKG-INFO +324 -0
  3. everysk_lib-1.6.1504/README.md +203 -0
  4. everysk_lib-1.6.1504/pyproject.toml +173 -0
  5. everysk_lib-1.6.1504/setup.cfg +4 -0
  6. everysk_lib-1.6.1504/src/__builtins__.py +15 -0
  7. everysk_lib-1.6.1504/src/everysk/__init__.py +24 -0
  8. everysk_lib-1.6.1504/src/everysk/api/__init__.py +61 -0
  9. everysk_lib-1.6.1504/src/everysk/api/_tests/api_requestor.py +154 -0
  10. everysk_lib-1.6.1504/src/everysk/api/_tests/http_client.py +92 -0
  11. everysk_lib-1.6.1504/src/everysk/api/_tests/init.py +76 -0
  12. everysk_lib-1.6.1504/src/everysk/api/_tests/utils.py +217 -0
  13. everysk_lib-1.6.1504/src/everysk/api/api_requestor.py +171 -0
  14. everysk_lib-1.6.1504/src/everysk/api/api_resources/__init__.py +23 -0
  15. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/api_resource.py +307 -0
  16. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/calculation.py +159 -0
  17. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/custom_index.py +24 -0
  18. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/datastore.py +45 -0
  19. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/file.py +24 -0
  20. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/market_data.py +84 -0
  21. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/parser.py +45 -0
  22. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/portfolio.py +23 -0
  23. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/private_security.py +24 -0
  24. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/report.py +42 -0
  25. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/report_template.py +24 -0
  26. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/worker_execution.py +38 -0
  27. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/workflow.py +39 -0
  28. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/workflow_execution.py +57 -0
  29. everysk_lib-1.6.1504/src/everysk/api/api_resources/_tests/workspace.py +24 -0
  30. everysk_lib-1.6.1504/src/everysk/api/api_resources/api_resource.py +371 -0
  31. everysk_lib-1.6.1504/src/everysk/api/api_resources/calculation.py +760 -0
  32. everysk_lib-1.6.1504/src/everysk/api/api_resources/custom_index.py +42 -0
  33. everysk_lib-1.6.1504/src/everysk/api/api_resources/datastore.py +81 -0
  34. everysk_lib-1.6.1504/src/everysk/api/api_resources/file.py +42 -0
  35. everysk_lib-1.6.1504/src/everysk/api/api_resources/market_data.py +223 -0
  36. everysk_lib-1.6.1504/src/everysk/api/api_resources/parser.py +66 -0
  37. everysk_lib-1.6.1504/src/everysk/api/api_resources/portfolio.py +43 -0
  38. everysk_lib-1.6.1504/src/everysk/api/api_resources/private_security.py +42 -0
  39. everysk_lib-1.6.1504/src/everysk/api/api_resources/report.py +65 -0
  40. everysk_lib-1.6.1504/src/everysk/api/api_resources/report_template.py +39 -0
  41. everysk_lib-1.6.1504/src/everysk/api/api_resources/tests.py +115 -0
  42. everysk_lib-1.6.1504/src/everysk/api/api_resources/worker_execution.py +64 -0
  43. everysk_lib-1.6.1504/src/everysk/api/api_resources/workflow.py +61 -0
  44. everysk_lib-1.6.1504/src/everysk/api/api_resources/workflow_execution.py +93 -0
  45. everysk_lib-1.6.1504/src/everysk/api/api_resources/workspace.py +42 -0
  46. everysk_lib-1.6.1504/src/everysk/api/http_client.py +59 -0
  47. everysk_lib-1.6.1504/src/everysk/api/tests.py +32 -0
  48. everysk_lib-1.6.1504/src/everysk/api/utils.py +253 -0
  49. everysk_lib-1.6.1504/src/everysk/config.py +436 -0
  50. everysk_lib-1.6.1504/src/everysk/config.pyi +194 -0
  51. everysk_lib-1.6.1504/src/everysk/core/_tests/compress.py +226 -0
  52. everysk_lib-1.6.1504/src/everysk/core/_tests/config.py +310 -0
  53. everysk_lib-1.6.1504/src/everysk/core/_tests/exceptions.py +155 -0
  54. everysk_lib-1.6.1504/src/everysk/core/_tests/fields.py +762 -0
  55. everysk_lib-1.6.1504/src/everysk/core/_tests/firestore.py +571 -0
  56. everysk_lib-1.6.1504/src/everysk/core/_tests/http.py +658 -0
  57. everysk_lib-1.6.1504/src/everysk/core/_tests/lists.py +129 -0
  58. everysk_lib-1.6.1504/src/everysk/core/_tests/log.py +1009 -0
  59. everysk_lib-1.6.1504/src/everysk/core/_tests/number.py +21 -0
  60. everysk_lib-1.6.1504/src/everysk/core/_tests/object.py +1874 -0
  61. everysk_lib-1.6.1504/src/everysk/core/_tests/redis.py +448 -0
  62. everysk_lib-1.6.1504/src/everysk/core/_tests/serialize.py +331 -0
  63. everysk_lib-1.6.1504/src/everysk/core/_tests/sftp.py +202 -0
  64. everysk_lib-1.6.1504/src/everysk/core/_tests/signing.py +71 -0
  65. everysk_lib-1.6.1504/src/everysk/core/_tests/slack.py +142 -0
  66. everysk_lib-1.6.1504/src/everysk/core/_tests/string.py +92 -0
  67. everysk_lib-1.6.1504/src/everysk/core/_tests/threads.py +129 -0
  68. everysk_lib-1.6.1504/src/everysk/core/_tests/undefined.py +70 -0
  69. everysk_lib-1.6.1504/src/everysk/core/_tests/unittests.py +47 -0
  70. everysk_lib-1.6.1504/src/everysk/core/_tests/utils.py +47 -0
  71. everysk_lib-1.6.1504/src/everysk/core/_tests/workers.py +272 -0
  72. everysk_lib-1.6.1504/src/everysk/core/cloud_function/main.py +78 -0
  73. everysk_lib-1.6.1504/src/everysk/core/cloud_function/tests.py +86 -0
  74. everysk_lib-1.6.1504/src/everysk/core/compress.py +247 -0
  75. everysk_lib-1.6.1504/src/everysk/core/datetime/__init__.py +12 -0
  76. everysk_lib-1.6.1504/src/everysk/core/datetime/calendar.py +140 -0
  77. everysk_lib-1.6.1504/src/everysk/core/datetime/date.py +468 -0
  78. everysk_lib-1.6.1504/src/everysk/core/datetime/date_expression.py +293 -0
  79. everysk_lib-1.6.1504/src/everysk/core/datetime/date_mixin.py +1612 -0
  80. everysk_lib-1.6.1504/src/everysk/core/datetime/date_settings.py +28 -0
  81. everysk_lib-1.6.1504/src/everysk/core/datetime/datetime.py +744 -0
  82. everysk_lib-1.6.1504/src/everysk/core/datetime/tests/calendar.py +150 -0
  83. everysk_lib-1.6.1504/src/everysk/core/datetime/tests/date.py +841 -0
  84. everysk_lib-1.6.1504/src/everysk/core/datetime/tests/date_mixin.py +30 -0
  85. everysk_lib-1.6.1504/src/everysk/core/datetime/tests/datetime.py +786 -0
  86. everysk_lib-1.6.1504/src/everysk/core/exceptions.py +333 -0
  87. everysk_lib-1.6.1504/src/everysk/core/fields.py +1118 -0
  88. everysk_lib-1.6.1504/src/everysk/core/firestore.py +554 -0
  89. everysk_lib-1.6.1504/src/everysk/core/fixtures/_settings.py +29 -0
  90. everysk_lib-1.6.1504/src/everysk/core/fixtures/other/_settings.py +18 -0
  91. everysk_lib-1.6.1504/src/everysk/core/fixtures/user_agents.json +88 -0
  92. everysk_lib-1.6.1504/src/everysk/core/http.py +615 -0
  93. everysk_lib-1.6.1504/src/everysk/core/lists.py +97 -0
  94. everysk_lib-1.6.1504/src/everysk/core/log.py +729 -0
  95. everysk_lib-1.6.1504/src/everysk/core/number.py +40 -0
  96. everysk_lib-1.6.1504/src/everysk/core/object.py +1421 -0
  97. everysk_lib-1.6.1504/src/everysk/core/redis.py +514 -0
  98. everysk_lib-1.6.1504/src/everysk/core/serialize.py +481 -0
  99. everysk_lib-1.6.1504/src/everysk/core/sftp.py +376 -0
  100. everysk_lib-1.6.1504/src/everysk/core/signing.py +50 -0
  101. everysk_lib-1.6.1504/src/everysk/core/slack.py +122 -0
  102. everysk_lib-1.6.1504/src/everysk/core/string.py +208 -0
  103. everysk_lib-1.6.1504/src/everysk/core/tests.py +208 -0
  104. everysk_lib-1.6.1504/src/everysk/core/threads.py +195 -0
  105. everysk_lib-1.6.1504/src/everysk/core/undefined.py +70 -0
  106. everysk_lib-1.6.1504/src/everysk/core/unittests.py +65 -0
  107. everysk_lib-1.6.1504/src/everysk/core/workers.py +230 -0
  108. everysk_lib-1.6.1504/src/everysk/sdk/__init__.py +26 -0
  109. everysk_lib-1.6.1504/src/everysk/sdk/_tests/base.py +189 -0
  110. everysk_lib-1.6.1504/src/everysk/sdk/_tests/init.py +38 -0
  111. everysk_lib-1.6.1504/src/everysk/sdk/_tests/serialize.py +209 -0
  112. everysk_lib-1.6.1504/src/everysk/sdk/_tests/worker_base.py +76 -0
  113. everysk_lib-1.6.1504/src/everysk/sdk/base.py +101 -0
  114. everysk_lib-1.6.1504/src/everysk/sdk/engines/__init__.py +26 -0
  115. everysk_lib-1.6.1504/src/everysk/sdk/engines/_tests/cache.py +255 -0
  116. everysk_lib-1.6.1504/src/everysk/sdk/engines/_tests/compliance.py +47 -0
  117. everysk_lib-1.6.1504/src/everysk/sdk/engines/_tests/cryptography.py +42 -0
  118. everysk_lib-1.6.1504/src/everysk/sdk/engines/_tests/expression.py +68 -0
  119. everysk_lib-1.6.1504/src/everysk/sdk/engines/_tests/init.py +49 -0
  120. everysk_lib-1.6.1504/src/everysk/sdk/engines/_tests/market_data.py +129 -0
  121. everysk_lib-1.6.1504/src/everysk/sdk/engines/cache.py +180 -0
  122. everysk_lib-1.6.1504/src/everysk/sdk/engines/compliance.py +45 -0
  123. everysk_lib-1.6.1504/src/everysk/sdk/engines/cryptography.py +74 -0
  124. everysk_lib-1.6.1504/src/everysk/sdk/engines/expression.py +62 -0
  125. everysk_lib-1.6.1504/src/everysk/sdk/engines/market_data.py +138 -0
  126. everysk_lib-1.6.1504/src/everysk/sdk/engines/settings.py +22 -0
  127. everysk_lib-1.6.1504/src/everysk/sdk/entities/__init__.py +26 -0
  128. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/base.py +590 -0
  129. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/base_list.py +88 -0
  130. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/fields.py +270 -0
  131. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/init.py +81 -0
  132. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/query.py +504 -0
  133. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/script.py +263 -0
  134. everysk_lib-1.6.1504/src/everysk/sdk/entities/_tests/tags.py +253 -0
  135. everysk_lib-1.6.1504/src/everysk/sdk/entities/base.py +782 -0
  136. everysk_lib-1.6.1504/src/everysk/sdk/entities/base_list.py +133 -0
  137. everysk_lib-1.6.1504/src/everysk/sdk/entities/custom_index/_tests/base.py +163 -0
  138. everysk_lib-1.6.1504/src/everysk/sdk/entities/custom_index/base.py +213 -0
  139. everysk_lib-1.6.1504/src/everysk/sdk/entities/custom_index/settings.py +35 -0
  140. everysk_lib-1.6.1504/src/everysk/sdk/entities/datastore/base.py +163 -0
  141. everysk_lib-1.6.1504/src/everysk/sdk/entities/datastore/settings.py +24 -0
  142. everysk_lib-1.6.1504/src/everysk/sdk/entities/datastore/tests/base.py +105 -0
  143. everysk_lib-1.6.1504/src/everysk/sdk/entities/fields.py +310 -0
  144. everysk_lib-1.6.1504/src/everysk/sdk/entities/file/_tests/base.py +248 -0
  145. everysk_lib-1.6.1504/src/everysk/sdk/entities/file/base.py +218 -0
  146. everysk_lib-1.6.1504/src/everysk/sdk/entities/file/settings.py +58 -0
  147. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/_tests/base.py +169 -0
  148. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/_tests/securities.py +131 -0
  149. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/_tests/security.py +430 -0
  150. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/base.py +253 -0
  151. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/securities.py +249 -0
  152. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/security.py +583 -0
  153. everysk_lib-1.6.1504/src/everysk/sdk/entities/portfolio/settings.py +104 -0
  154. everysk_lib-1.6.1504/src/everysk/sdk/entities/private_security/_tests/base.py +187 -0
  155. everysk_lib-1.6.1504/src/everysk/sdk/entities/private_security/base.py +230 -0
  156. everysk_lib-1.6.1504/src/everysk/sdk/entities/private_security/settings.py +23 -0
  157. everysk_lib-1.6.1504/src/everysk/sdk/entities/query.py +607 -0
  158. everysk_lib-1.6.1504/src/everysk/sdk/entities/report/base.py +218 -0
  159. everysk_lib-1.6.1504/src/everysk/sdk/entities/report/settings.py +29 -0
  160. everysk_lib-1.6.1504/src/everysk/sdk/entities/report/tests/base.py +139 -0
  161. everysk_lib-1.6.1504/src/everysk/sdk/entities/script.py +310 -0
  162. everysk_lib-1.6.1504/src/everysk/sdk/entities/settings.py +51 -0
  163. everysk_lib-1.6.1504/src/everysk/sdk/entities/tags.py +176 -0
  164. everysk_lib-1.6.1504/src/everysk/sdk/entities/worker_execution/base.py +282 -0
  165. everysk_lib-1.6.1504/src/everysk/sdk/entities/worker_execution/settings.py +55 -0
  166. everysk_lib-1.6.1504/src/everysk/sdk/entities/worker_execution/tests/base.py +216 -0
  167. everysk_lib-1.6.1504/src/everysk/sdk/entities/workflow_execution/base.py +116 -0
  168. everysk_lib-1.6.1504/src/everysk/sdk/entities/workflow_execution/settings.py +38 -0
  169. everysk_lib-1.6.1504/src/everysk/sdk/entities/workflow_execution/tests/base.py +113 -0
  170. everysk_lib-1.6.1504/src/everysk/sdk/settings.py +74 -0
  171. everysk_lib-1.6.1504/src/everysk/sdk/tests.py +67 -0
  172. everysk_lib-1.6.1504/src/everysk/sdk/worker_base.py +50 -0
  173. everysk_lib-1.6.1504/src/everysk/server/__init__.py +9 -0
  174. everysk_lib-1.6.1504/src/everysk/server/_tests/applications.py +78 -0
  175. everysk_lib-1.6.1504/src/everysk/server/_tests/endpoints.py +516 -0
  176. everysk_lib-1.6.1504/src/everysk/server/_tests/middlewares.py +86 -0
  177. everysk_lib-1.6.1504/src/everysk/server/_tests/routing.py +33 -0
  178. everysk_lib-1.6.1504/src/everysk/server/applications.py +40 -0
  179. everysk_lib-1.6.1504/src/everysk/server/endpoints.py +371 -0
  180. everysk_lib-1.6.1504/src/everysk/server/example_api.py +56 -0
  181. everysk_lib-1.6.1504/src/everysk/server/middlewares.py +69 -0
  182. everysk_lib-1.6.1504/src/everysk/server/requests.py +55 -0
  183. everysk_lib-1.6.1504/src/everysk/server/responses.py +28 -0
  184. everysk_lib-1.6.1504/src/everysk/server/routing.py +60 -0
  185. everysk_lib-1.6.1504/src/everysk/server/settings.py +26 -0
  186. everysk_lib-1.6.1504/src/everysk/server/tests.py +34 -0
  187. everysk_lib-1.6.1504/src/everysk/settings.py +81 -0
  188. everysk_lib-1.6.1504/src/everysk/tests.py +21 -0
  189. everysk_lib-1.6.1504/src/everysk/utils.py +78 -0
  190. everysk_lib-1.6.1504/src/everysk_lib.egg-info/PKG-INFO +324 -0
  191. everysk_lib-1.6.1504/src/everysk_lib.egg-info/SOURCES.txt +192 -0
  192. everysk_lib-1.6.1504/src/everysk_lib.egg-info/dependency_links.txt +1 -0
  193. everysk_lib-1.6.1504/src/everysk_lib.egg-info/requires.txt +105 -0
  194. everysk_lib-1.6.1504/src/everysk_lib.egg-info/top_level.txt +2 -0
@@ -0,0 +1,9 @@
1
+ (C) Copyright 2025 EVERYSK TECHNOLOGIES
2
+
3
+ This is an unpublished work containing confidential and proprietary
4
+ information of EVERYSK TECHNOLOGIES. Disclosure, use, or reproduction
5
+ without authorization of EVERYSK TECHNOLOGIES is prohibited.
6
+
7
+ Date: Jan 2025
8
+ Contact: contact@everysk.com
9
+ URL: https://everysk.com/
@@ -0,0 +1,324 @@
1
+ Metadata-Version: 2.2
2
+ Name: everysk-lib
3
+ Version: 1.6.1504
4
+ Summary: Generic lib to share python code on Everysk.
5
+ License: (C) Copyright 2025 EVERYSK TECHNOLOGIES
6
+
7
+ This is an unpublished work containing confidential and proprietary
8
+ information of EVERYSK TECHNOLOGIES. Disclosure, use, or reproduction
9
+ without authorization of EVERYSK TECHNOLOGIES is prohibited.
10
+
11
+ Date: Jan 2025
12
+ Contact: contact@everysk.com
13
+ URL: https://everysk.com/
14
+
15
+ Project-URL: Homepage, https://everysk.com/
16
+ Keywords: python,setuptools,development,lib
17
+ Classifier: Development Status :: 5 - Production/Stable
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: Topic :: Software Development :: Build Tools
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Requires-Python: >=3.11
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE.txt
24
+ Requires-Dist: python-dateutil==2.8.2
25
+ Requires-Dist: holidays==0.51
26
+ Requires-Dist: tzdata==2024.1
27
+ Provides-Extra: requests
28
+ Requires-Dist: certifi==2025.01.31; extra == "requests"
29
+ Requires-Dist: charset-normalizer==3.3.2; extra == "requests"
30
+ Requires-Dist: idna==3.6; extra == "requests"
31
+ Requires-Dist: urllib3==2.2.1; extra == "requests"
32
+ Requires-Dist: requests==2.31.0; extra == "requests"
33
+ Provides-Extra: firestore
34
+ Requires-Dist: certifi==2025.01.31; extra == "firestore"
35
+ Requires-Dist: charset-normalizer==3.3.2; extra == "firestore"
36
+ Requires-Dist: idna==3.6; extra == "firestore"
37
+ Requires-Dist: urllib3==2.2.1; extra == "firestore"
38
+ Requires-Dist: requests==2.31.0; extra == "firestore"
39
+ Requires-Dist: pyasn1==0.5.1; extra == "firestore"
40
+ Requires-Dist: pyasn1-modules==0.3.0; extra == "firestore"
41
+ Requires-Dist: cachetools==5.3.2; extra == "firestore"
42
+ Requires-Dist: rsa==4.9; extra == "firestore"
43
+ Requires-Dist: google-auth==2.28.1; extra == "firestore"
44
+ Requires-Dist: googleapis-common-protos==1.62.0; extra == "firestore"
45
+ Requires-Dist: grpcio==1.60.1; extra == "firestore"
46
+ Requires-Dist: grpcio-status==1.60.1; extra == "firestore"
47
+ Requires-Dist: google-api-core[grpc]==2.17.1; extra == "firestore"
48
+ Requires-Dist: google-cloud-core==2.4.1; extra == "firestore"
49
+ Requires-Dist: proto-plus==1.23.0; extra == "firestore"
50
+ Requires-Dist: protobuf==4.25.3; extra == "firestore"
51
+ Requires-Dist: google-cloud-firestore==2.15.0; extra == "firestore"
52
+ Provides-Extra: redis
53
+ Requires-Dist: redis==5.0.8; extra == "redis"
54
+ Provides-Extra: tasks
55
+ Requires-Dist: certifi==2025.01.31; extra == "tasks"
56
+ Requires-Dist: charset-normalizer==3.3.2; extra == "tasks"
57
+ Requires-Dist: idna==3.6; extra == "tasks"
58
+ Requires-Dist: urllib3==2.2.1; extra == "tasks"
59
+ Requires-Dist: requests==2.31.0; extra == "tasks"
60
+ Requires-Dist: pyasn1==0.5.1; extra == "tasks"
61
+ Requires-Dist: pyasn1-modules==0.3.0; extra == "tasks"
62
+ Requires-Dist: cachetools==5.3.2; extra == "tasks"
63
+ Requires-Dist: rsa==4.9; extra == "tasks"
64
+ Requires-Dist: google-auth==2.28.1; extra == "tasks"
65
+ Requires-Dist: googleapis-common-protos==1.62.0; extra == "tasks"
66
+ Requires-Dist: grpcio==1.60.1; extra == "tasks"
67
+ Requires-Dist: grpcio-status==1.60.1; extra == "tasks"
68
+ Requires-Dist: google-api-core[grpc]==2.17.1; extra == "tasks"
69
+ Requires-Dist: google-cloud-core==2.4.1; extra == "tasks"
70
+ Requires-Dist: proto-plus==1.23.0; extra == "tasks"
71
+ Requires-Dist: protobuf==4.25.3; extra == "tasks"
72
+ Requires-Dist: grpc-google-iam-v1==0.13.0; extra == "tasks"
73
+ Requires-Dist: google-cloud-tasks==2.16.1; extra == "tasks"
74
+ Provides-Extra: flask
75
+ Requires-Dist: MarkupSafe==2.1.5; extra == "flask"
76
+ Requires-Dist: blinker==1.8.2; extra == "flask"
77
+ Requires-Dist: click==8.1.7; extra == "flask"
78
+ Requires-Dist: itsdangerous==2.2.0; extra == "flask"
79
+ Requires-Dist: Jinja2==3.1.4; extra == "flask"
80
+ Requires-Dist: Werkzeug==3.0.3; extra == "flask"
81
+ Requires-Dist: flask==3.0.3; extra == "flask"
82
+ Provides-Extra: starlette
83
+ Requires-Dist: idna==3.6; extra == "starlette"
84
+ Requires-Dist: sniffio==1.3.1; extra == "starlette"
85
+ Requires-Dist: anyio==4.4.0; extra == "starlette"
86
+ Requires-Dist: certifi==2025.01.31; extra == "starlette"
87
+ Requires-Dist: h11==0.14.0; extra == "starlette"
88
+ Requires-Dist: httpcore==1.0.5; extra == "starlette"
89
+ Requires-Dist: itsdangerous==2.2.0; extra == "starlette"
90
+ Requires-Dist: MarkupSafe==2.1.5; extra == "starlette"
91
+ Requires-Dist: Jinja2==3.1.4; extra == "starlette"
92
+ Requires-Dist: python-multipart==0.0.9; extra == "starlette"
93
+ Requires-Dist: pyyaml==6.0.2; extra == "starlette"
94
+ Requires-Dist: starlette==0.38.2; extra == "starlette"
95
+ Requires-Dist: hpack==4.0.0; extra == "starlette"
96
+ Requires-Dist: hyperframe==6.0.1; extra == "starlette"
97
+ Requires-Dist: h2==4.1.0; extra == "starlette"
98
+ Requires-Dist: httpx==0.27.2; extra == "starlette"
99
+ Requires-Dist: priority==2.0.0; extra == "starlette"
100
+ Requires-Dist: uvloop==0.20.0; extra == "starlette"
101
+ Requires-Dist: wsproto==1.2.0; extra == "starlette"
102
+ Requires-Dist: Hypercorn==0.17.3; extra == "starlette"
103
+ Provides-Extra: httpx
104
+ Requires-Dist: idna==3.6; extra == "httpx"
105
+ Requires-Dist: sniffio==1.3.1; extra == "httpx"
106
+ Requires-Dist: anyio==4.4.0; extra == "httpx"
107
+ Requires-Dist: certifi==2025.01.31; extra == "httpx"
108
+ Requires-Dist: h11==0.14.0; extra == "httpx"
109
+ Requires-Dist: httpcore==1.0.5; extra == "httpx"
110
+ Requires-Dist: hpack==4.0.0; extra == "httpx"
111
+ Requires-Dist: hyperframe==6.0.1; extra == "httpx"
112
+ Requires-Dist: h2==4.1.0; extra == "httpx"
113
+ Requires-Dist: httpx==0.27.2; extra == "httpx"
114
+ Provides-Extra: paramiko
115
+ Requires-Dist: bcrypt==4.2.0; extra == "paramiko"
116
+ Requires-Dist: pycparser==2.22; extra == "paramiko"
117
+ Requires-Dist: cffi==1.17.1; extra == "paramiko"
118
+ Requires-Dist: cryptography==43.0.3; extra == "paramiko"
119
+ Requires-Dist: pynacl==1.5.0; extra == "paramiko"
120
+ Requires-Dist: paramiko==3.5.0; extra == "paramiko"
121
+
122
+
123
+ # Everysk Library
124
+
125
+ The **Everysk Library** is a one-stop solution designed to help our teams and partners streamline workflows and maximize productivity.
126
+
127
+ Many projects at Everysk rely on multiple **endpoints**, **engines**, and **utilities** to automate workflows, handle entities such as portfolios, datastores, reports, and files, and perform complex calculations. Adopting and maintaining each of these components individually can be both time-consuming and expensive.
128
+
129
+ To address this challenge, Everysk developed the Everysk Library: a unified Python library that bundles these capabilities into a single, convenient package.
130
+
131
+ By consolidating essential functionalities — ranging from portfolio creation to workflow automation — Everysk Lib greatly simplifies implementation and ongoing maintenance. This all-in-one toolkit ensures you have everything you need to build powerful, scalable solutions across a variety of Everysk projects.
132
+
133
+ <br>
134
+
135
+ ## Table of Contents
136
+
137
+ - [Directory Structure](#directory-structure)
138
+ - [Installation](#installation)
139
+ - [Running Tests](#running-tests)
140
+ - [Running Tests with coverage](#running-tests-with-coverage)
141
+ - [Contributing](#contributing)
142
+ - [License](#license)
143
+
144
+ ## Directory Structure
145
+
146
+ Below we have the main directories that you will be working with.
147
+
148
+ ```mermaid
149
+ flowchart TB
150
+ EveryskLibrary(["Everysk Library"])
151
+ SDKDir(["sdk"])
152
+ CoreDir(["core"])
153
+ ServerDir(["server"])
154
+ ApiDir(["api"])
155
+ EntitiesDir(["entities"])
156
+ EnginesDir(["engines"])
157
+ DatetimeDir(["datetime"])
158
+ EveryskLibrary --> SDKDir
159
+ EveryskLibrary --> CoreDir
160
+ EveryskLibrary --> ServerDir
161
+ EveryskLibrary --> ApiDir
162
+ SDKDir --> EntitiesDir
163
+ SDKDir --> EnginesDir
164
+ CoreDir --> DatetimeDir
165
+ ```
166
+
167
+ <br>
168
+
169
+ ## Installation
170
+
171
+ To install the **Everysk library**, you will need to use pip's `install` command:
172
+
173
+ ```bash
174
+ pip install everysk-lib
175
+ ```
176
+
177
+ ### Verifying the Installation
178
+
179
+ After installing the library, it's a good practice to verify if the installation was successful. Here is how to achieve this:
180
+
181
+ #### 1. Open a terminal
182
+
183
+ #### 2. Start the Python interpreter by typing `python` and pressing `Enter`
184
+
185
+ #### 3. In the Python interpreter, type the following command then press `Enter`:
186
+
187
+ ```python
188
+ import everysk
189
+ ```
190
+
191
+ If the library has been installed correctly, this command should complete without any errors. If the library is not installed or there's a problem with the installation, Python will raise a `ModuleNotFoundError`
192
+
193
+ <br>
194
+
195
+ ## Documentation
196
+
197
+ The main documentation of the Everysk Library can be founded here: [Everysk Library Documentation](docs/README.md)
198
+
199
+ <br>
200
+
201
+ ## Running Tests
202
+
203
+ This section provides instructions on how to run tests for the project. There are two scenarios, the first one is running tests in a development environment and the second one is running tests after the library has been installed from PyPI.
204
+
205
+ ### Running Tests in Development Environment
206
+
207
+ In a development environment you can use the provided shell script to run the tests. The script sets up the necessary environment and then run the tests. To execute the tests, open a bash terminal and run the following command.
208
+
209
+ ```bash
210
+ ./run.sh tests
211
+ ```
212
+
213
+ ### Running Tests After the Library is Installed
214
+
215
+ After the library has been installed in your project from PyPI, you can start running tests using Python's built-in unittest module. To run tests use the following command:
216
+
217
+
218
+ ```bash
219
+ python3 -m unittest everysk.core.tests
220
+ ```
221
+
222
+ The command uses Python's unittest module as mentioned above as a script, which then runs the test in the `everysk.core.tests` package.
223
+
224
+ <br>
225
+
226
+ ## Running Tests with coverage
227
+
228
+ Code coverage us a way of measuring how many lines of code are executed while the automated tests are running.
229
+
230
+ To run tests along with a coverage report, you can use the provided shell script. The script will not only run the tests but also generate a coverage report that shows the percentage of code that was executed during the tests.
231
+
232
+ This is useful to identify sections of your code that are not being tested and may need additional tests.
233
+
234
+ #### 1. Open a terminal in your Visual Studio Code environment.
235
+
236
+ #### 2. Run the following command.
237
+
238
+ ```bash
239
+ ./run.sh coverage
240
+ ```
241
+
242
+ This command executes the `run.sh` script with the `coverage` argument. The report will be displayed in the terminal after the script completed the tests.
243
+
244
+ **Remember:** a high coverage percentage is generally good, but 100% coverage does not ensures that your code is free from bugs or any other problem that might occur in your code. The full coverage just means that all the lines in your code were executed during the tests.
245
+
246
+ <br>
247
+
248
+ ## Contributing
249
+
250
+ Contributions are always welcome and greatly appreciated!
251
+
252
+ Go to the repository [link](https://github.com/Everysk/everysk-lib) and click on the `Fork` button to create your own copy of the everysk library.
253
+
254
+ Then clone the project in your own local machine by running the command below or using the **GitHub Desktop**.
255
+
256
+ ```bash
257
+ git clone https://github.com/<your-username>/everysk-lib.git everysk-yourusername
258
+ ```
259
+
260
+ This section creates a directory called `everysk-yourusername` to center all your code.
261
+
262
+ After that you can change the directory by:
263
+
264
+ ```bash
265
+ cd everysk-yourusername
266
+ ```
267
+
268
+ Create the **upstream** repository which will refer to the main repository that you just forked.
269
+
270
+ ```bash
271
+ git remote add upstream https://github.com/Everysk/everysk-lib.git
272
+ ```
273
+
274
+ Now run the following commands to make sure that your clone is up-to-date with main everysk repository
275
+
276
+ ```bash
277
+ git checkout main
278
+ git pull upstream main
279
+ ```
280
+
281
+ Shortly after, create a new branch to add your code
282
+
283
+ ```bash
284
+ git checkout -b brand-new-feature
285
+ ```
286
+
287
+ The command above will automatically switch to this newly created branch. At this moment your are able to make your modifications to the code and commit locally as you progress.
288
+
289
+ After all the code changes, you can submit your contribution by pushing the changes to your fork on GitHub:
290
+
291
+ ```bash
292
+ git push origin brand-new-feature
293
+ ```
294
+
295
+ The command above ensures that all the modifications that you've made are up-to-date with your current branch.
296
+
297
+ At the end of this process you will need to make a **Pull Request** to the main branch.
298
+
299
+ To achieve this, go to the GitHub page of the project and click on the `Pull requests` tab, then click on `New pull request` button.
300
+
301
+ This will open a new section used to compare branches, now choose your branch for merging into the main branch and hit the `Create pull request` button.
302
+
303
+ <br>
304
+
305
+ ## License
306
+
307
+ (C) Copyright 2025 EVERYSK TECHNOLOGIES
308
+
309
+ This is an unpublished work containing confidential and proprietary
310
+ information of EVERYSK TECHNOLOGIES. Disclosure, use, or reproduction
311
+ without authorization of EVERYSK TECHNOLOGIES is prohibited.
312
+
313
+ Date: Jan 2025
314
+
315
+ Contact: contact@everysk.com
316
+
317
+ URL: https://everysk.com/
318
+
319
+
320
+ <br>
321
+ <hr>
322
+ <br>
323
+
324
+ [Back to the top](#everysk-library)
@@ -0,0 +1,203 @@
1
+
2
+ # Everysk Library
3
+
4
+ The **Everysk Library** is a one-stop solution designed to help our teams and partners streamline workflows and maximize productivity.
5
+
6
+ Many projects at Everysk rely on multiple **endpoints**, **engines**, and **utilities** to automate workflows, handle entities such as portfolios, datastores, reports, and files, and perform complex calculations. Adopting and maintaining each of these components individually can be both time-consuming and expensive.
7
+
8
+ To address this challenge, Everysk developed the Everysk Library: a unified Python library that bundles these capabilities into a single, convenient package.
9
+
10
+ By consolidating essential functionalities — ranging from portfolio creation to workflow automation — Everysk Lib greatly simplifies implementation and ongoing maintenance. This all-in-one toolkit ensures you have everything you need to build powerful, scalable solutions across a variety of Everysk projects.
11
+
12
+ <br>
13
+
14
+ ## Table of Contents
15
+
16
+ - [Directory Structure](#directory-structure)
17
+ - [Installation](#installation)
18
+ - [Running Tests](#running-tests)
19
+ - [Running Tests with coverage](#running-tests-with-coverage)
20
+ - [Contributing](#contributing)
21
+ - [License](#license)
22
+
23
+ ## Directory Structure
24
+
25
+ Below we have the main directories that you will be working with.
26
+
27
+ ```mermaid
28
+ flowchart TB
29
+ EveryskLibrary(["Everysk Library"])
30
+ SDKDir(["sdk"])
31
+ CoreDir(["core"])
32
+ ServerDir(["server"])
33
+ ApiDir(["api"])
34
+ EntitiesDir(["entities"])
35
+ EnginesDir(["engines"])
36
+ DatetimeDir(["datetime"])
37
+ EveryskLibrary --> SDKDir
38
+ EveryskLibrary --> CoreDir
39
+ EveryskLibrary --> ServerDir
40
+ EveryskLibrary --> ApiDir
41
+ SDKDir --> EntitiesDir
42
+ SDKDir --> EnginesDir
43
+ CoreDir --> DatetimeDir
44
+ ```
45
+
46
+ <br>
47
+
48
+ ## Installation
49
+
50
+ To install the **Everysk library**, you will need to use pip's `install` command:
51
+
52
+ ```bash
53
+ pip install everysk-lib
54
+ ```
55
+
56
+ ### Verifying the Installation
57
+
58
+ After installing the library, it's a good practice to verify if the installation was successful. Here is how to achieve this:
59
+
60
+ #### 1. Open a terminal
61
+
62
+ #### 2. Start the Python interpreter by typing `python` and pressing `Enter`
63
+
64
+ #### 3. In the Python interpreter, type the following command then press `Enter`:
65
+
66
+ ```python
67
+ import everysk
68
+ ```
69
+
70
+ If the library has been installed correctly, this command should complete without any errors. If the library is not installed or there's a problem with the installation, Python will raise a `ModuleNotFoundError`
71
+
72
+ <br>
73
+
74
+ ## Documentation
75
+
76
+ The main documentation of the Everysk Library can be founded here: [Everysk Library Documentation](docs/README.md)
77
+
78
+ <br>
79
+
80
+ ## Running Tests
81
+
82
+ This section provides instructions on how to run tests for the project. There are two scenarios, the first one is running tests in a development environment and the second one is running tests after the library has been installed from PyPI.
83
+
84
+ ### Running Tests in Development Environment
85
+
86
+ In a development environment you can use the provided shell script to run the tests. The script sets up the necessary environment and then run the tests. To execute the tests, open a bash terminal and run the following command.
87
+
88
+ ```bash
89
+ ./run.sh tests
90
+ ```
91
+
92
+ ### Running Tests After the Library is Installed
93
+
94
+ After the library has been installed in your project from PyPI, you can start running tests using Python's built-in unittest module. To run tests use the following command:
95
+
96
+
97
+ ```bash
98
+ python3 -m unittest everysk.core.tests
99
+ ```
100
+
101
+ The command uses Python's unittest module as mentioned above as a script, which then runs the test in the `everysk.core.tests` package.
102
+
103
+ <br>
104
+
105
+ ## Running Tests with coverage
106
+
107
+ Code coverage us a way of measuring how many lines of code are executed while the automated tests are running.
108
+
109
+ To run tests along with a coverage report, you can use the provided shell script. The script will not only run the tests but also generate a coverage report that shows the percentage of code that was executed during the tests.
110
+
111
+ This is useful to identify sections of your code that are not being tested and may need additional tests.
112
+
113
+ #### 1. Open a terminal in your Visual Studio Code environment.
114
+
115
+ #### 2. Run the following command.
116
+
117
+ ```bash
118
+ ./run.sh coverage
119
+ ```
120
+
121
+ This command executes the `run.sh` script with the `coverage` argument. The report will be displayed in the terminal after the script completed the tests.
122
+
123
+ **Remember:** a high coverage percentage is generally good, but 100% coverage does not ensures that your code is free from bugs or any other problem that might occur in your code. The full coverage just means that all the lines in your code were executed during the tests.
124
+
125
+ <br>
126
+
127
+ ## Contributing
128
+
129
+ Contributions are always welcome and greatly appreciated!
130
+
131
+ Go to the repository [link](https://github.com/Everysk/everysk-lib) and click on the `Fork` button to create your own copy of the everysk library.
132
+
133
+ Then clone the project in your own local machine by running the command below or using the **GitHub Desktop**.
134
+
135
+ ```bash
136
+ git clone https://github.com/<your-username>/everysk-lib.git everysk-yourusername
137
+ ```
138
+
139
+ This section creates a directory called `everysk-yourusername` to center all your code.
140
+
141
+ After that you can change the directory by:
142
+
143
+ ```bash
144
+ cd everysk-yourusername
145
+ ```
146
+
147
+ Create the **upstream** repository which will refer to the main repository that you just forked.
148
+
149
+ ```bash
150
+ git remote add upstream https://github.com/Everysk/everysk-lib.git
151
+ ```
152
+
153
+ Now run the following commands to make sure that your clone is up-to-date with main everysk repository
154
+
155
+ ```bash
156
+ git checkout main
157
+ git pull upstream main
158
+ ```
159
+
160
+ Shortly after, create a new branch to add your code
161
+
162
+ ```bash
163
+ git checkout -b brand-new-feature
164
+ ```
165
+
166
+ The command above will automatically switch to this newly created branch. At this moment your are able to make your modifications to the code and commit locally as you progress.
167
+
168
+ After all the code changes, you can submit your contribution by pushing the changes to your fork on GitHub:
169
+
170
+ ```bash
171
+ git push origin brand-new-feature
172
+ ```
173
+
174
+ The command above ensures that all the modifications that you've made are up-to-date with your current branch.
175
+
176
+ At the end of this process you will need to make a **Pull Request** to the main branch.
177
+
178
+ To achieve this, go to the GitHub page of the project and click on the `Pull requests` tab, then click on `New pull request` button.
179
+
180
+ This will open a new section used to compare branches, now choose your branch for merging into the main branch and hit the `Create pull request` button.
181
+
182
+ <br>
183
+
184
+ ## License
185
+
186
+ (C) Copyright 2025 EVERYSK TECHNOLOGIES
187
+
188
+ This is an unpublished work containing confidential and proprietary
189
+ information of EVERYSK TECHNOLOGIES. Disclosure, use, or reproduction
190
+ without authorization of EVERYSK TECHNOLOGIES is prohibited.
191
+
192
+ Date: Jan 2025
193
+
194
+ Contact: contact@everysk.com
195
+
196
+ URL: https://everysk.com/
197
+
198
+
199
+ <br>
200
+ <hr>
201
+ <br>
202
+
203
+ [Back to the top](#everysk-library)