tachyon-api 0.9.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.
Files changed (44) hide show
  1. tachyon_api/__init__.py +59 -0
  2. tachyon_api/app.py +699 -0
  3. tachyon_api/background.py +72 -0
  4. tachyon_api/cache.py +270 -0
  5. tachyon_api/cli/__init__.py +9 -0
  6. tachyon_api/cli/__main__.py +8 -0
  7. tachyon_api/cli/commands/__init__.py +5 -0
  8. tachyon_api/cli/commands/generate.py +190 -0
  9. tachyon_api/cli/commands/lint.py +186 -0
  10. tachyon_api/cli/commands/new.py +82 -0
  11. tachyon_api/cli/commands/openapi.py +128 -0
  12. tachyon_api/cli/main.py +69 -0
  13. tachyon_api/cli/templates/__init__.py +8 -0
  14. tachyon_api/cli/templates/project.py +194 -0
  15. tachyon_api/cli/templates/service.py +330 -0
  16. tachyon_api/core/__init__.py +12 -0
  17. tachyon_api/core/lifecycle.py +106 -0
  18. tachyon_api/core/websocket.py +92 -0
  19. tachyon_api/di.py +86 -0
  20. tachyon_api/exceptions.py +39 -0
  21. tachyon_api/files.py +14 -0
  22. tachyon_api/middlewares/__init__.py +4 -0
  23. tachyon_api/middlewares/core.py +40 -0
  24. tachyon_api/middlewares/cors.py +159 -0
  25. tachyon_api/middlewares/logger.py +123 -0
  26. tachyon_api/models.py +73 -0
  27. tachyon_api/openapi.py +419 -0
  28. tachyon_api/params.py +268 -0
  29. tachyon_api/processing/__init__.py +14 -0
  30. tachyon_api/processing/dependencies.py +172 -0
  31. tachyon_api/processing/parameters.py +484 -0
  32. tachyon_api/processing/response_processor.py +93 -0
  33. tachyon_api/responses.py +92 -0
  34. tachyon_api/router.py +161 -0
  35. tachyon_api/security.py +295 -0
  36. tachyon_api/testing.py +110 -0
  37. tachyon_api/utils/__init__.py +15 -0
  38. tachyon_api/utils/type_converter.py +113 -0
  39. tachyon_api/utils/type_utils.py +162 -0
  40. tachyon_api-0.9.0.dist-info/METADATA +291 -0
  41. tachyon_api-0.9.0.dist-info/RECORD +44 -0
  42. tachyon_api-0.9.0.dist-info/WHEEL +4 -0
  43. tachyon_api-0.9.0.dist-info/entry_points.txt +3 -0
  44. tachyon_api-0.9.0.dist-info/licenses/LICENSE +17 -0
@@ -0,0 +1,44 @@
1
+ tachyon_api/__init__.py,sha256=P_GrdvRS0y-K-VDiYIRvsgYEIM5mu-QbwQ3H_24gMxw,1394
2
+ tachyon_api/app.py,sha256=dyUSGHHBveWnBDv3WsursuaUQ7M4AlwS45nGC_8BqCo,26804
3
+ tachyon_api/background.py,sha256=g_U9DVhSq_KbRT788vpuC_uNWDc0e-HMuWoRWTIGNLk,2308
4
+ tachyon_api/cache.py,sha256=IIdg9yTiNuc9CEgV33yLXz9ssmHqI9IiqMilRbM-aZ8,8312
5
+ tachyon_api/cli/__init__.py,sha256=_dOlv7Op2Gw7446VxrG9evuJ5T5ZMIOUJz6AdQ6g1_s,158
6
+ tachyon_api/cli/__main__.py,sha256=Kq1LKef32TJDTZhpsK8jKcZMARaqtCwy1-wKsCHACEY,115
7
+ tachyon_api/cli/commands/__init__.py,sha256=zcbATsTf-NpKFG7rHMAoQfMYi1G6dGgxpxyMU1GF9EU,113
8
+ tachyon_api/cli/commands/generate.py,sha256=Sj1AlSWA7lXYEgkJQbJZeoa2I6yScw1Sa8ccYg3VHRY,5625
9
+ tachyon_api/cli/commands/lint.py,sha256=FaQ6B26H8N8-grW8_Rj05D-uzzOIOThT5iFuLfhLVF4,4624
10
+ tachyon_api/cli/commands/new.py,sha256=oMY9HUub8fO5HCEP04vWwqdy8Ttp-4ta_6ZMwlEZmUM,2595
11
+ tachyon_api/cli/commands/openapi.py,sha256=Ly8k7zwS4UWj5r-Cm6pryBi8G4ohjWZVmPardP4dls8,3694
12
+ tachyon_api/cli/main.py,sha256=A6XCD1fhPpW_AlStUrqIbNcHUEsBGKVBXad01OpoELY,1607
13
+ tachyon_api/cli/templates/__init__.py,sha256=VfN6BSP-Zk5SJV6y5_HeF0V-ZmyewMge18NFefrt77Q,172
14
+ tachyon_api/cli/templates/project.py,sha256=11luwxEKsLXOO7xHjxpx2oAptDvH-Udi7OvjofBKoCs,3938
15
+ tachyon_api/cli/templates/service.py,sha256=kfEp2zzdlNJ2_7kM2rFR5N8rztlAROCMeMJRkKcpmbY,8495
16
+ tachyon_api/core/__init__.py,sha256=aNWyKuo1UDaOXLGmGhKV1adkvOvMIFroQNmUW7Hdbkk,332
17
+ tachyon_api/core/lifecycle.py,sha256=ndEJWfniaIS5B4fNlXbXqwuX_TEu9b1b7pqmNJBUf4s,3391
18
+ tachyon_api/core/websocket.py,sha256=frZLbK8zrbynVPXhLmssRavskJE9BTw3fcRYTCeBg3A,2748
19
+ tachyon_api/di.py,sha256=BFfu8w4MQkeR_SDY4j-JkgeJM0G-GaB8PueYz13Osqw,2543
20
+ tachyon_api/exceptions.py,sha256=0V6sjkG3bGyEr0GLSlXdpWQX14NzzkKkJWWkK_t6eTk,1154
21
+ tachyon_api/files.py,sha256=8TnVOCp6l2X5U4fVQ-uga-M3n2eutoZnB_lCdWUgsIw,433
22
+ tachyon_api/middlewares/__init__.py,sha256=kxZ6afQocHKsUG9xyaVFHlGUzmxqo7kZEm-GhfxY5NQ,120
23
+ tachyon_api/middlewares/core.py,sha256=-dJTrI6KJbQzatopCUC5lau_JIZpl063697qdE4W0SY,1440
24
+ tachyon_api/middlewares/cors.py,sha256=IzaedBdUCOYsQpMhZRN3mAzDevvQVnKDYzMrqY56bNA,6068
25
+ tachyon_api/middlewares/logger.py,sha256=TcYcfBuc8iBGZZIW6aMvJ_foFD7by9vM_EsHnhH9E_Y,4908
26
+ tachyon_api/models.py,sha256=9pA5_ddMAcWW2dErAgeyG926NFezfCU68uuhW0qGMs4,2224
27
+ tachyon_api/openapi.py,sha256=M13a69UXbOm_mEh0dc0Z4-TfbV-n69bJa5FoceWelwE,13749
28
+ tachyon_api/params.py,sha256=3W28opDMCkCNNltb54cs0ALSC9ZdDZtEaRkc9rMETds,8481
29
+ tachyon_api/processing/__init__.py,sha256=SjJwjsGmTz-pQuYPoiXFMl_amtVk4XzypM90G6x4aq4,486
30
+ tachyon_api/processing/dependencies.py,sha256=b1veT6Vuconh9Z-YemVi8xYNURg5Prymhx3RYo_ly2k,6366
31
+ tachyon_api/processing/parameters.py,sha256=doehx5EvO1Ygu7xHN-zFmSBqmKrKVkkjRfiIz_Bf_To,18526
32
+ tachyon_api/processing/response_processor.py,sha256=F0i6XSK7yn4bT9UjMnpvHVNp2TW7jf5Jmd_s6xG97z4,2880
33
+ tachyon_api/responses.py,sha256=vFH8RsQxsuOoaSE6hBh1_UhXC_jdFyBdeYyMYDtIuDg,2945
34
+ tachyon_api/router.py,sha256=avrI6Sjd8mNGT6GTDDfbHksNfm-Rz1DbuW0KFnpqOfQ,5122
35
+ tachyon_api/security.py,sha256=Ki5_fxQpK84acxLqz6V6Zbw11hN_90F9TidJvRTHh5k,8907
36
+ tachyon_api/testing.py,sha256=2Q58xQVT13NJW1uHDLMY9L-nwKLnHfTcbozeg2YY0L4,3139
37
+ tachyon_api/utils/__init__.py,sha256=TNUZIW8UWbr9ocWJ-JvRgHraXiQT6LLcvNjbRQUzr14,389
38
+ tachyon_api/utils/type_converter.py,sha256=l0akBnETvPBqhS_utzCWO65AiQ7cTxzkSL7Juo9p7sA,4151
39
+ tachyon_api/utils/type_utils.py,sha256=e4ae7HdpDOgdYW-cEcUBOtiNBkEa1fkcZWYciU2XB8U,4712
40
+ tachyon_api-0.9.0.dist-info/METADATA,sha256=m-eqSk-EEs-3I9uwJvl8CSQxHgjbueDQ6ikNuZfdtBg,7841
41
+ tachyon_api-0.9.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
42
+ tachyon_api-0.9.0.dist-info/entry_points.txt,sha256=VCBvvAQqDGCApb9b3fQuF1L2MU05ZCNDgLnu-wn0_O4,47
43
+ tachyon_api-0.9.0.dist-info/licenses/LICENSE,sha256=UZXUTSuWBt8V377-2_YE4ug9t6rcBAKrfOVhIBQ8zhk,712
44
+ tachyon_api-0.9.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.2.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ tachyon=tachyon_api.cli:app
3
+
@@ -0,0 +1,17 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2025 Juan Manuel Panozzo Zénere
5
+
6
+ This program is free software: you can redistribute it and/or modify
7
+ it under the terms of the GNU General Public License as published by
8
+ the Free Software Foundation, either version 3 of the License, or
9
+ (at your option) any later version.
10
+
11
+ This program is distributed in the hope that it will be useful,
12
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ GNU General Public License for more details.
15
+
16
+ You should have received a copy of the GNU General Public License
17
+ along with this program. If not, see <https://www.gnu.org/licenses/>.