sf-veritas 0.10.5__cp313-cp313-manylinux_2_28_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of sf-veritas might be problematic. Click here for more details.

Files changed (133) hide show
  1. sf_veritas/__init__.py +20 -0
  2. sf_veritas/_sffastlog.c +889 -0
  3. sf_veritas/_sffastlog.cpython-313-x86_64-linux-gnu.so +0 -0
  4. sf_veritas/_sffastnet.c +924 -0
  5. sf_veritas/_sffastnet.cpython-313-x86_64-linux-gnu.so +0 -0
  6. sf_veritas/_sffastnetworkrequest.c +730 -0
  7. sf_veritas/_sffastnetworkrequest.cpython-313-x86_64-linux-gnu.so +0 -0
  8. sf_veritas/_sffuncspan.c +2155 -0
  9. sf_veritas/_sffuncspan.cpython-313-x86_64-linux-gnu.so +0 -0
  10. sf_veritas/_sffuncspan_config.c +617 -0
  11. sf_veritas/_sffuncspan_config.cpython-313-x86_64-linux-gnu.so +0 -0
  12. sf_veritas/_sfheadercheck.c +341 -0
  13. sf_veritas/_sfheadercheck.cpython-313-x86_64-linux-gnu.so +0 -0
  14. sf_veritas/_sfnetworkhop.c +1451 -0
  15. sf_veritas/_sfnetworkhop.cpython-313-x86_64-linux-gnu.so +0 -0
  16. sf_veritas/_sfservice.c +1175 -0
  17. sf_veritas/_sfservice.cpython-313-x86_64-linux-gnu.so +0 -0
  18. sf_veritas/_sfteepreload.c +5167 -0
  19. sf_veritas/app_config.py +50 -0
  20. sf_veritas/cli.py +336 -0
  21. sf_veritas/constants.py +10 -0
  22. sf_veritas/custom_excepthook.py +304 -0
  23. sf_veritas/custom_log_handler.py +129 -0
  24. sf_veritas/custom_output_wrapper.py +144 -0
  25. sf_veritas/custom_print.py +146 -0
  26. sf_veritas/django_app.py +5 -0
  27. sf_veritas/env_vars.py +186 -0
  28. sf_veritas/exception_handling_middleware.py +18 -0
  29. sf_veritas/exception_metaclass.py +69 -0
  30. sf_veritas/fast_frame_info.py +116 -0
  31. sf_veritas/fast_network_hop.py +293 -0
  32. sf_veritas/frame_tools.py +112 -0
  33. sf_veritas/funcspan_config_loader.py +556 -0
  34. sf_veritas/function_span_profiler.py +1174 -0
  35. sf_veritas/import_hook.py +62 -0
  36. sf_veritas/infra_details/__init__.py +3 -0
  37. sf_veritas/infra_details/get_infra_details.py +24 -0
  38. sf_veritas/infra_details/kubernetes/__init__.py +3 -0
  39. sf_veritas/infra_details/kubernetes/get_cluster_name.py +147 -0
  40. sf_veritas/infra_details/kubernetes/get_details.py +7 -0
  41. sf_veritas/infra_details/running_on/__init__.py +17 -0
  42. sf_veritas/infra_details/running_on/kubernetes.py +11 -0
  43. sf_veritas/interceptors.py +497 -0
  44. sf_veritas/libsfnettee.so +0 -0
  45. sf_veritas/local_env_detect.py +118 -0
  46. sf_veritas/package_metadata.py +6 -0
  47. sf_veritas/patches/__init__.py +0 -0
  48. sf_veritas/patches/_patch_tracker.py +74 -0
  49. sf_veritas/patches/concurrent_futures.py +19 -0
  50. sf_veritas/patches/constants.py +1 -0
  51. sf_veritas/patches/exceptions.py +82 -0
  52. sf_veritas/patches/multiprocessing.py +32 -0
  53. sf_veritas/patches/network_libraries/__init__.py +76 -0
  54. sf_veritas/patches/network_libraries/aiohttp.py +281 -0
  55. sf_veritas/patches/network_libraries/curl_cffi.py +363 -0
  56. sf_veritas/patches/network_libraries/http_client.py +419 -0
  57. sf_veritas/patches/network_libraries/httpcore.py +515 -0
  58. sf_veritas/patches/network_libraries/httplib2.py +204 -0
  59. sf_veritas/patches/network_libraries/httpx.py +544 -0
  60. sf_veritas/patches/network_libraries/niquests.py +211 -0
  61. sf_veritas/patches/network_libraries/pycurl.py +392 -0
  62. sf_veritas/patches/network_libraries/requests.py +639 -0
  63. sf_veritas/patches/network_libraries/tornado.py +341 -0
  64. sf_veritas/patches/network_libraries/treq.py +270 -0
  65. sf_veritas/patches/network_libraries/urllib_request.py +477 -0
  66. sf_veritas/patches/network_libraries/utils.py +398 -0
  67. sf_veritas/patches/os.py +17 -0
  68. sf_veritas/patches/threading.py +218 -0
  69. sf_veritas/patches/web_frameworks/__init__.py +54 -0
  70. sf_veritas/patches/web_frameworks/aiohttp.py +793 -0
  71. sf_veritas/patches/web_frameworks/async_websocket_consumer.py +317 -0
  72. sf_veritas/patches/web_frameworks/blacksheep.py +527 -0
  73. sf_veritas/patches/web_frameworks/bottle.py +502 -0
  74. sf_veritas/patches/web_frameworks/cherrypy.py +678 -0
  75. sf_veritas/patches/web_frameworks/cors_utils.py +122 -0
  76. sf_veritas/patches/web_frameworks/django.py +944 -0
  77. sf_veritas/patches/web_frameworks/eve.py +395 -0
  78. sf_veritas/patches/web_frameworks/falcon.py +926 -0
  79. sf_veritas/patches/web_frameworks/fastapi.py +724 -0
  80. sf_veritas/patches/web_frameworks/flask.py +520 -0
  81. sf_veritas/patches/web_frameworks/klein.py +501 -0
  82. sf_veritas/patches/web_frameworks/litestar.py +551 -0
  83. sf_veritas/patches/web_frameworks/pyramid.py +428 -0
  84. sf_veritas/patches/web_frameworks/quart.py +824 -0
  85. sf_veritas/patches/web_frameworks/robyn.py +697 -0
  86. sf_veritas/patches/web_frameworks/sanic.py +857 -0
  87. sf_veritas/patches/web_frameworks/starlette.py +723 -0
  88. sf_veritas/patches/web_frameworks/strawberry.py +813 -0
  89. sf_veritas/patches/web_frameworks/tornado.py +481 -0
  90. sf_veritas/patches/web_frameworks/utils.py +91 -0
  91. sf_veritas/print_override.py +13 -0
  92. sf_veritas/regular_data_transmitter.py +409 -0
  93. sf_veritas/request_interceptor.py +401 -0
  94. sf_veritas/request_utils.py +550 -0
  95. sf_veritas/server_status.py +1 -0
  96. sf_veritas/shutdown_flag.py +11 -0
  97. sf_veritas/subprocess_startup.py +3 -0
  98. sf_veritas/test_cli.py +145 -0
  99. sf_veritas/thread_local.py +970 -0
  100. sf_veritas/timeutil.py +114 -0
  101. sf_veritas/transmit_exception_to_sailfish.py +28 -0
  102. sf_veritas/transmitter.py +132 -0
  103. sf_veritas/types.py +47 -0
  104. sf_veritas/unified_interceptor.py +1586 -0
  105. sf_veritas/utils.py +39 -0
  106. sf_veritas-0.10.5.dist-info/METADATA +97 -0
  107. sf_veritas-0.10.5.dist-info/RECORD +133 -0
  108. sf_veritas-0.10.5.dist-info/WHEEL +5 -0
  109. sf_veritas-0.10.5.dist-info/entry_points.txt +2 -0
  110. sf_veritas-0.10.5.dist-info/top_level.txt +1 -0
  111. sf_veritas.libs/libbrotlicommon-6ce2a53c.so.1.0.6 +0 -0
  112. sf_veritas.libs/libbrotlidec-811d1be3.so.1.0.6 +0 -0
  113. sf_veritas.libs/libcom_err-730ca923.so.2.1 +0 -0
  114. sf_veritas.libs/libcrypt-52aca757.so.1.1.0 +0 -0
  115. sf_veritas.libs/libcrypto-bdaed0ea.so.1.1.1k +0 -0
  116. sf_veritas.libs/libcurl-eaa3cf66.so.4.5.0 +0 -0
  117. sf_veritas.libs/libgssapi_krb5-323bbd21.so.2.2 +0 -0
  118. sf_veritas.libs/libidn2-2f4a5893.so.0.3.6 +0 -0
  119. sf_veritas.libs/libk5crypto-9a74ff38.so.3.1 +0 -0
  120. sf_veritas.libs/libkeyutils-2777d33d.so.1.6 +0 -0
  121. sf_veritas.libs/libkrb5-a55300e8.so.3.3 +0 -0
  122. sf_veritas.libs/libkrb5support-e6594cfc.so.0.1 +0 -0
  123. sf_veritas.libs/liblber-2-d20824ef.4.so.2.10.9 +0 -0
  124. sf_veritas.libs/libldap-2-cea2a960.4.so.2.10.9 +0 -0
  125. sf_veritas.libs/libnghttp2-39367a22.so.14.17.0 +0 -0
  126. sf_veritas.libs/libpcre2-8-516f4c9d.so.0.7.1 +0 -0
  127. sf_veritas.libs/libpsl-99becdd3.so.5.3.1 +0 -0
  128. sf_veritas.libs/libsasl2-7de4d792.so.3.0.0 +0 -0
  129. sf_veritas.libs/libselinux-d0805dcb.so.1 +0 -0
  130. sf_veritas.libs/libssh-c11d285b.so.4.8.7 +0 -0
  131. sf_veritas.libs/libssl-60250281.so.1.1.1k +0 -0
  132. sf_veritas.libs/libunistring-05abdd40.so.2.1.0 +0 -0
  133. sf_veritas.libs/libuuid-95b83d40.so.1.3.0 +0 -0
sf_veritas/utils.py ADDED
@@ -0,0 +1,39 @@
1
+ import json
2
+ from typing import List, Tuple
3
+
4
+
5
+ def strtobool(val) -> bool:
6
+ """Convert a string representation of truth to true (1) or false (0).
7
+ True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
8
+ are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
9
+ 'val' is anything else.
10
+ """
11
+ val = val.lower()
12
+ if val in ("y", "yes", "t", "true", "on", "1"):
13
+ return True
14
+ elif val in ("n", "no", "f", "false", "off", "0"):
15
+ return False
16
+ else:
17
+ raise ValueError("invalid truth value %r" % (val,))
18
+
19
+
20
+ def is_json_serializable(value):
21
+ try:
22
+ json.dumps(value)
23
+ return True
24
+ except (TypeError, OverflowError):
25
+ return False
26
+
27
+
28
+ def serialize_json_with_exclusions(input_dict) -> Tuple[str, List[str]]:
29
+ serializable_data = {}
30
+ excluded_fields = []
31
+
32
+ for k, v in input_dict.items():
33
+ if is_json_serializable(v):
34
+ serializable_data[k] = v
35
+ else:
36
+ excluded_fields.append(k)
37
+
38
+ json_str = json.dumps(serializable_data)
39
+ return json_str, excluded_fields
@@ -0,0 +1,97 @@
1
+ Metadata-Version: 2.1
2
+ Name: sf-veritas
3
+ Version: 0.10.5
4
+ Summary: Middleware for Django, Flask, and FastAPI to intercept requests, logs, and exceptions.
5
+ Author-email: Eric Meadows <em@sailfishqa.com>
6
+ License: Proprietary
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: deepmerge>=1.1.1
10
+ Requires-Dist: fire>=0.7.0
11
+ Requires-Dist: ntplib>=0.4.0
12
+ Requires-Dist: pydantic>=2.9.2
13
+ Requires-Dist: tldextract>=5.1.2
14
+ Requires-Dist: python-dateutil>=2.9.0.post0
15
+ Requires-Dist: orjson>=3.11.3
16
+ Requires-Dist: pyyaml>=6.0
17
+ Requires-Dist: tomli>=2.0.0; python_version < "3.11"
18
+ Requires-Dist: wrapt>=1.17.0
19
+ Provides-Extra: django
20
+ Requires-Dist: django; extra == "django"
21
+ Provides-Extra: flask
22
+ Requires-Dist: flask; extra == "flask"
23
+ Provides-Extra: fastapi
24
+ Requires-Dist: fastapi; extra == "fastapi"
25
+ Provides-Extra: requests
26
+ Requires-Dist: requests>=2.25.1; extra == "requests"
27
+ Provides-Extra: httpcore
28
+ Requires-Dist: httpcore[asyncio,http2,socks,trio]>=1.0.9; extra == "httpcore"
29
+ Provides-Extra: httpx
30
+ Requires-Dist: httpx[http2]>=0.28.1; extra == "httpx"
31
+ Provides-Extra: niquests
32
+ Requires-Dist: niquests>=3.15.2; extra == "niquests"
33
+ Provides-Extra: pycurl
34
+ Requires-Dist: pycurl>=7.45.7; extra == "pycurl"
35
+ Provides-Extra: all-network
36
+ Requires-Dist: requests>=2.25.1; extra == "all-network"
37
+ Requires-Dist: httpcore[asyncio,http2,socks,trio]>=1.0.9; extra == "all-network"
38
+ Requires-Dist: httpx[http2]>=0.28.1; extra == "all-network"
39
+ Requires-Dist: niquests>=3.15.2; extra == "all-network"
40
+ Requires-Dist: pycurl>=7.45.7; extra == "all-network"
41
+
42
+ # SF3 Middleware - Currently transmissions are diabled
43
+
44
+ <!-- TODO - turn on thread transmissions -->
45
+
46
+ Middleware for Python (Django, Flask, and FastAPI) to intercept requests, print statements, logs, and exceptions while persisting tracing.
47
+
48
+ ## Installation
49
+
50
+ Use Poetry to install:
51
+
52
+ ```bash
53
+ poetry add sf-veritas
54
+ ```
55
+
56
+ ## Usage
57
+
58
+ ### Django, etc
59
+
60
+ **Switch the following:**
61
+
62
+ ```sh
63
+ python manage.py runserver 0.0.0.0:8000
64
+ ```
65
+
66
+ **To:**
67
+
68
+ ```sh
69
+ sf-veritas API-KEY python manage.py runserver 0.0.0.0:8000
70
+ ```
71
+
72
+ ## TODO - Rename all Sailfish artifacts to Sailfish.ai
73
+
74
+ ## Network Hop Calculation Time
75
+
76
+ To evaluate the performance impact of this package, we benchmarked 1000 HTTP requests with and without the package enabled.
77
+
78
+ | Configuration | Mean (ms) | Median (ms) | Std Dev (ms) |
79
+ |-------------------|-----------|-------------|--------------|
80
+ | ✅ With Package | 79.12 | 54.00 | 111.18 |
81
+ | ❌ Without Package | 69.70 | 52.00 | 73.78 |
82
+
83
+ > ⚠️ Note: The package introduces a slight increase in mean response time and variance. This trade-off may be acceptable depending on the value the package provides (e.g., additional logging, monitoring, or security features).
84
+
85
+ ---
86
+
87
+ ## Optimized Entrypoint Capture (Post-Refactor)
88
+
89
+ After optimizing how the user-code entrypoint is captured (via faster stack inspection), we observed improved stability and performance across 1015 analyzed requests:
90
+
91
+ | Configuration | Mean (ms) | Median (ms) | Std Dev (ms) |
92
+ |-------------------|-----------|-------------|--------------|
93
+ | ✅ With Package | 142.45 | 138.50 | 80.78 |
94
+ | ❌ Without Package | 131.07 | 127.00 | 35.75 |
95
+
96
+ > ⚠️ The optimized implementation added a slight increase in mean latency (~8.7%), but this tradeoff is offset by improved accuracy of entrypoint capture.
97
+ ---
@@ -0,0 +1,133 @@
1
+ sf_veritas/__init__.py,sha256=uzcYwKV77hhPlrLDd6GIlEPk_Ud6pPlN4Y7mI-TprcE,621
2
+ sf_veritas/_sffastlog.c,sha256=1EQWwXj1TouWhy7F6wmNeG3yf9wgpKN8mjTBCYglbTM,31608
3
+ sf_veritas/_sffastlog.cpython-313-x86_64-linux-gnu.so,sha256=U9_rOGAvHY_AHKOo0MEq5Jl3fDGJ_CgPzB-IJe2lU6Y,38265
4
+ sf_veritas/_sffastnet.c,sha256=c8tO4p5CJEvtI9WfHXiMXBEUNT8-KP4u42DLLWsDgYY,34795
5
+ sf_veritas/_sffastnet.cpython-313-x86_64-linux-gnu.so,sha256=MGTbinbWaOyo_ZEzdZw3y1mVioUdotWBrAS-gO4FmBQ,42377
6
+ sf_veritas/_sffastnetworkrequest.c,sha256=4oMtHFnmavh59tZdbb-jpwASNPOhhS0yyGVzNLww-z0,25777
7
+ sf_veritas/_sffastnetworkrequest.cpython-313-x86_64-linux-gnu.so,sha256=QQTCKW8ckCTVFT90OoGOnG7UiJ9sGOLwvZ6PGNpSHqc,38225
8
+ sf_veritas/_sffuncspan.c,sha256=ttIDe6H9aIXOOTYsfmDvXJczi6HFmehrVVldNkGJyoQ,79302
9
+ sf_veritas/_sffuncspan.cpython-313-x86_64-linux-gnu.so,sha256=_F4pVPFZTuV7ytNVl_rF1IXyG8HANj6xT7ig-wYXI8Y,67729
10
+ sf_veritas/_sffuncspan_config.c,sha256=GsIyQdBzEsKKzU94kYLPEsA_VHUkxlKFIs4XryOAWk8,19985
11
+ sf_veritas/_sffuncspan_config.cpython-313-x86_64-linux-gnu.so,sha256=Vy6r4TbZVfNvP3crncjT_meFRRynLnP7TsnuZWQHJpA,26864
12
+ sf_veritas/_sfheadercheck.c,sha256=gfRySvanxADK_V7FQyUj0J5GKKcVOLkpEmx5pi4jve8,10724
13
+ sf_veritas/_sfheadercheck.cpython-313-x86_64-linux-gnu.so,sha256=WjxqEqWmNQAez5LyrgFd8VoDAXzFFOjR_ze2MlsOeck,17880
14
+ sf_veritas/_sfnetworkhop.c,sha256=bgKm5bk-A4EK68mfUySj_3-E76i54UmyXZU-lL4rLnk,52652
15
+ sf_veritas/_sfnetworkhop.cpython-313-x86_64-linux-gnu.so,sha256=MM_pcRA7cbPnWynYF1Dqypcq_jsCD5QMvo1Amr3L0ow,50921
16
+ sf_veritas/_sfservice.c,sha256=lRs7dwcuwzQtzWB3WJoV_b5uSLel4GmLbFFKYrjyZqM,44843
17
+ sf_veritas/_sfservice.cpython-313-x86_64-linux-gnu.so,sha256=iNorJBp5HXsAiqowWW0TdTxxWmeHC5K0bEk2rUI31is,46505
18
+ sf_veritas/_sfteepreload.c,sha256=mn8MCCVesW8YuSks4Rnoy21A4Rzo38gYKsJBjG9pRDo,217036
19
+ sf_veritas/app_config.py,sha256=7wV4GlxNjLvlmUkC3WQ-cy3U9fhYV3JA9xpcg6jNGFE,1700
20
+ sf_veritas/cli.py,sha256=b2Dowg5LLyHU-TWzypk0DctNjwqhzFDn-LqHZ3EGkyk,12376
21
+ sf_veritas/constants.py,sha256=fYto50jHQFrsMLZnbEjzEfnP2ZGZ8K47Wgzd8_b1bKY,724
22
+ sf_veritas/custom_excepthook.py,sha256=ViiwbL5K6_9897aO6H3hg-5g-kuVD96t262J9uUIGpg,9442
23
+ sf_veritas/custom_log_handler.py,sha256=Tou3lLZhGdD6KjEIMAZH408bcK2ONYeNDiAatoDupD0,4833
24
+ sf_veritas/custom_output_wrapper.py,sha256=gJcXHiU6EyYLyvpH2ECAJ9jPIdjsvzaKw3YjhOCDbqA,4636
25
+ sf_veritas/custom_print.py,sha256=R-XzQQvAIfnQ28QjEXGxakWhQVD05NmllN5uDgNPgaA,4924
26
+ sf_veritas/django_app.py,sha256=iQR7GB19P2mTa4tSO9-YcMt_86-GcGtdKT6rg2ck-DU,94
27
+ sf_veritas/env_vars.py,sha256=-lXfFmnxiNQ0ESmjoxhHVaWfXMgFhAyJDWj26Pa6F3A,7415
28
+ sf_veritas/exception_handling_middleware.py,sha256=o3tNvNoof59JnLwnKv-FnJN_9H8sbQkSJ1wa-BCIS1c,504
29
+ sf_veritas/exception_metaclass.py,sha256=jvem80P8WHjIGoJAP_DO71ADHZhjX42XgRCfafno20g,2450
30
+ sf_veritas/fast_frame_info.py,sha256=OT7i3-Yeea6l4gY8X3qnEDXU0GmO-rfUelKIA84Dw6c,3135
31
+ sf_veritas/fast_network_hop.py,sha256=NLsuAQGlmljBwaFr3N-mzcVoMEtg-oBNFsfS_y2Y5Vk,10220
32
+ sf_veritas/frame_tools.py,sha256=xVpyq-mrQEnwIZqZXpDtYEm6TX5hJkODrg-86IgACqs,3581
33
+ sf_veritas/funcspan_config_loader.py,sha256=ox_FEbopUaYb3TH8_VKRwYFihd5vvubtHKSMUnj7nf8,21391
34
+ sf_veritas/function_span_profiler.py,sha256=r3wFnrn1y8sF75QB8nxB2M_ABDALQb5jp5N-2ycHMFk,43459
35
+ sf_veritas/import_hook.py,sha256=iY7ag7NwjwXNEbsdSmUvDDKn7f2HOVxfCqMhi0cXCIE,2008
36
+ sf_veritas/interceptors.py,sha256=NTzDb9XKRWL__HJHhRLffvVkVHFIzwDtu58mmjF7m_4,17566
37
+ sf_veritas/libsfnettee.so,sha256=A2FqZIcnLpUN_A3uxipl67x5zRZlN3rD9v9mcERq924,92145
38
+ sf_veritas/local_env_detect.py,sha256=t6LT1JM0rN5njYBLHQ0oSH9FLgL9ldsyj6XpRTbpcGY,3932
39
+ sf_veritas/package_metadata.py,sha256=U06HSL0cDQcvSXwOXFU9HiBCPuAHm8NDbvxlNrmdutc,143
40
+ sf_veritas/print_override.py,sha256=zE0dynL7xEe1O8XGesU9nh18AW5afAS3wTTD2Ff206I,313
41
+ sf_veritas/regular_data_transmitter.py,sha256=FV7goOBnSwuaY9qyCiXQU5DSbT6WjcqW8ecErVlYaSU,14371
42
+ sf_veritas/request_interceptor.py,sha256=uszGkC0RmpC_NAK_oQyi5aenPQ8NwdRswHRy5TQisTI,14486
43
+ sf_veritas/request_utils.py,sha256=mEd804IOxI9OZiYLoifDzxztDyUnfWPqRsQZiCkJDz8,19167
44
+ sf_veritas/server_status.py,sha256=VZQJpDrjrLKB61A9OH2fjCdJTraI29iZ6x2oVE8lwnA,23
45
+ sf_veritas/shutdown_flag.py,sha256=ivDhin6dqbvXyhafbslZnTPhWlGTZ15rwyTaxA7HcBM,160
46
+ sf_veritas/subprocess_startup.py,sha256=OoYxLGvXlR2eoyg6s4D1-Gv2i7FvoGazkM0yPQulhog,103
47
+ sf_veritas/test_cli.py,sha256=2xjWTDKiavL4W49n7KsW5-2Wu0xRorTyavlNIJoZh_o,4944
48
+ sf_veritas/thread_local.py,sha256=Nx0j2mV-2z0pm_bC817gxFqpniwm_r_mjHa_mT8kYBU,32931
49
+ sf_veritas/timeutil.py,sha256=cUFfmLV300YfbPcokf7dmTEida7uOKrRP5w7iMExoBc,4364
50
+ sf_veritas/transmit_exception_to_sailfish.py,sha256=hKC30o9fEpYuCDwNI3EJ3Qc6hA-Clh2VnsHDmEVQmj4,1024
51
+ sf_veritas/transmitter.py,sha256=G3-4SmqYssvMNfVrZ0ZkfH00NMlo0Co16rUBp6w2t9o,4899
52
+ sf_veritas/types.py,sha256=KZV37s7wqJwx3uwOkwLZGUG3OdINmKa6T23rQYR1XKU,1321
53
+ sf_veritas/unified_interceptor.py,sha256=JQXxzoV2pKB0gwIKFNU3nKFsutKhh4MJVwhUfUMrIUI,58275
54
+ sf_veritas/utils.py,sha256=4DWVRCbjnE4nsG_t7A6Qmw35mg0AE5B3oRg_R-WP9PM,1089
55
+ sf_veritas/infra_details/__init__.py,sha256=fm2C1_km1TcbdNXuq8C6Lr8KhHPyUQ3bYYZoZgVYLos,82
56
+ sf_veritas/infra_details/get_infra_details.py,sha256=zhO-lT5xYbZ3ABqcj8bfPuH1Yf234s1c8Kwudc6NtHU,610
57
+ sf_veritas/infra_details/kubernetes/__init__.py,sha256=4g1cFJ7_pbVLzoaaXWOwt6W4Kt8_EBSjR5-sD2L1L4Q,64
58
+ sf_veritas/infra_details/kubernetes/get_cluster_name.py,sha256=q2toNwTmNZmxD7moy8V5gxVQZtaGjNolm4KUHVqiGEY,4680
59
+ sf_veritas/infra_details/kubernetes/get_details.py,sha256=PEzmte-9EC0kCRo-A1R_S0E60RjRKvpwrCmOVG1zSfA,163
60
+ sf_veritas/infra_details/running_on/__init__.py,sha256=zAEbvDQIrafUCIeDQbKaU2orcY1wvKc8z9OL_eyDdeg,271
61
+ sf_veritas/infra_details/running_on/kubernetes.py,sha256=BaIGbtO7aWosmWFn1Uyv_I1DaXICPdOv8AVr1hJodc8,312
62
+ sf_veritas/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ sf_veritas/patches/_patch_tracker.py,sha256=SA6gHjVumFaajlJBr9-63Van7jaJBtEj5KghUDQWjRk,1887
64
+ sf_veritas/patches/concurrent_futures.py,sha256=ZqUbg3R5daWpSx2sFgwilAF1D8HDkd95tfPyaASWcKU,562
65
+ sf_veritas/patches/constants.py,sha256=ALgzeZFfzF54_w_q49Ycst7OGocMDv8eHHZkhsJz0vA,87
66
+ sf_veritas/patches/exceptions.py,sha256=m4Zy9MLNxqvfCmexdSSxFXW45A8a_EOthLYwm9yEgkU,2531
67
+ sf_veritas/patches/multiprocessing.py,sha256=g-POVQKQrr7fBmDJmN5jpHy0LCRhmNw_v4ypZfQm_2Y,863
68
+ sf_veritas/patches/os.py,sha256=68w74eQ-BugO2oLR3HKSrtQwc2OrR7lWXzPUGqaI8YA,305
69
+ sf_veritas/patches/threading.py,sha256=mfwuujo1a8JzFzrbEwddOCf1Le5NrZsw4QGio5MOAgY,8881
70
+ sf_veritas/patches/network_libraries/__init__.py,sha256=29I_aY7B2ISwwP2hsg-D3DS0Q2Ymwna2HlrDLWDV5lg,3716
71
+ sf_veritas/patches/network_libraries/aiohttp.py,sha256=A3yxthGlAdcjQZf71_rFu2ZD_ed4zhbBJoD6Snhk5J8,11535
72
+ sf_veritas/patches/network_libraries/curl_cffi.py,sha256=JYWDohDvbYpNJry5lU9TkpxGCWhG51UO85t8kLsMpKk,13601
73
+ sf_veritas/patches/network_libraries/http_client.py,sha256=VD00Cqs3_YNqaYsepQmg1LZ4uWDbk-WZz87aY0yDeUs,15232
74
+ sf_veritas/patches/network_libraries/httpcore.py,sha256=aG9OuA-qPWM-0jTT8HXZ0AQF9N0evJYxZXGCTr3bGv0,19919
75
+ sf_veritas/patches/network_libraries/httplib2.py,sha256=twFj_BzuZ8dt_Venk_h-DVStqoLuZmwa97-fznykjk0,7546
76
+ sf_veritas/patches/network_libraries/httpx.py,sha256=3RH7lyFMraeW71YjErPHQP2L5oxYuA-d3ojkx51slQM,20723
77
+ sf_veritas/patches/network_libraries/niquests.py,sha256=o3hXOxrrRjN2Qm7AD4F8nfBp09ITdg0APCSClMsYNFU,7559
78
+ sf_veritas/patches/network_libraries/pycurl.py,sha256=_BJ9uImMHiwq0xMjDKH78guXTE6KisW2Tp8lXyDmB50,15948
79
+ sf_veritas/patches/network_libraries/requests.py,sha256=kmwznpZDvaXwvtjisvm4dcpVnsUECjozR05K5mEwGAc,24760
80
+ sf_veritas/patches/network_libraries/tornado.py,sha256=IuMe9bX48PEjerdfbyjcOcAS4bN3cBKpKEBTys4Ivq0,13212
81
+ sf_veritas/patches/network_libraries/treq.py,sha256=EQBZ8rtUpa1_T23lzZONMezYWM8Mbb51dYlHCtviT1s,9626
82
+ sf_veritas/patches/network_libraries/urllib_request.py,sha256=EHP2TJ4uSdKK74LN-FloMsBYy1qzz3cA_psTpL21DfU,17313
83
+ sf_veritas/patches/network_libraries/utils.py,sha256=1YBQe0RENniFfJgcZEFiZpgkC3AN545y71HBilyXcyI,15178
84
+ sf_veritas/patches/web_frameworks/__init__.py,sha256=jtNAvwmr6K5WGME4s14WVmd2e8QrBeD1us-TjDOaBXY,1802
85
+ sf_veritas/patches/web_frameworks/aiohttp.py,sha256=5QnE_RN8xN3o9Hre4eVusx_fPuCk64MqoxqbplZCrhA,35763
86
+ sf_veritas/patches/web_frameworks/async_websocket_consumer.py,sha256=rp9aMC0Ej7C4Us17hmbGa5BPevyMeyX4OJFZQgbIuFo,13994
87
+ sf_veritas/patches/web_frameworks/blacksheep.py,sha256=vzlVfISxfkfZ7MrURQI2_yBMosBDqmrgxeLLxHmgps8,22922
88
+ sf_veritas/patches/web_frameworks/bottle.py,sha256=NsR3MvQARmIsAC_BkD0sN0RgT6yiP7culVl29XlQ9Uk,22025
89
+ sf_veritas/patches/web_frameworks/cherrypy.py,sha256=NDcokqGGIv6yi9E9ioOiZrU6EIwop3UvGjbH6GPi03g,30415
90
+ sf_veritas/patches/web_frameworks/cors_utils.py,sha256=0RoFO0h974cED-lzB9vSwkxAhuF3hsfGR2xSsu2SemI,4312
91
+ sf_veritas/patches/web_frameworks/django.py,sha256=xy_Y8wqKQjNlkS4sPQkw-Gc1pgFp6D-xgIFChcL1j3U,38773
92
+ sf_veritas/patches/web_frameworks/eve.py,sha256=3lTuo-mCF1ktHnV_vvLt14mfbBtp-mke23nZz5oea3M,16835
93
+ sf_veritas/patches/web_frameworks/falcon.py,sha256=cF2s5Wh1tdUbgE-O_-nLfnBAwb2fGzZ1_D_wISGwlXM,42535
94
+ sf_veritas/patches/web_frameworks/fastapi.py,sha256=fNSsmHFyjB8kVHe80h5m1mlPAjhpU6ZZtMC49j-to7A,31503
95
+ sf_veritas/patches/web_frameworks/flask.py,sha256=T_HO7Ta2oUCtNxBhuoUgM6Smv1N5p95LaVqxxoSwlgo,21385
96
+ sf_veritas/patches/web_frameworks/klein.py,sha256=Q5TT2JwuDHJkLTuaRBEOc8ptSar2T2XxQCSIOjngdQ4,24732
97
+ sf_veritas/patches/web_frameworks/litestar.py,sha256=qtnrrOZmOhkCieONci3r2zzJznAMXOcdU0G4xuAXyt0,22753
98
+ sf_veritas/patches/web_frameworks/pyramid.py,sha256=pLWGZ6bVz4H0LkUTjLnyV03-dMVIXZuGAI2D-4N-ZTQ,18515
99
+ sf_veritas/patches/web_frameworks/quart.py,sha256=QFIKFsNXFKrMVAWudKSP0GVbNwPes3ygIU0PCg8Hc3M,38223
100
+ sf_veritas/patches/web_frameworks/robyn.py,sha256=uX5o-PNtgdCGyTuQDUuQ-kGhNJC9A9L6wiM0plEiON8,31922
101
+ sf_veritas/patches/web_frameworks/sanic.py,sha256=SbnKV0u2ehIoMumFyrPhYFgdQPyXRxZvtIzVVfS0WwQ,37850
102
+ sf_veritas/patches/web_frameworks/starlette.py,sha256=qtvwF6hWXHv6hx2_tBFunLQ-5WXzOa6EbfIcMX2W1t8,32505
103
+ sf_veritas/patches/web_frameworks/strawberry.py,sha256=8sMHrvsvjr0VICyQDC4Ft-EfZBLflBH2i3zQ51zN9Sk,33769
104
+ sf_veritas/patches/web_frameworks/tornado.py,sha256=tWOCYGObvQ6CMcvDKNrLiX-TKuBl8a2weBzpQM5BvVg,21020
105
+ sf_veritas/patches/web_frameworks/utils.py,sha256=oxJCsFkBsTBB6dpLbw3Ig1QuRbUlBJHzPiUpdaxN8kw,2762
106
+ sf_veritas.libs/libbrotlicommon-6ce2a53c.so.1.0.6,sha256=zyiyGpvmy7huKm-JlWHCMo8WS_JA9XIh55qtQLs8GBA,135913
107
+ sf_veritas.libs/libbrotlidec-811d1be3.so.1.0.6,sha256=dmwMSDMQH7ShACzQjRinGgwh53QUkcxPZXYv0hEpmKI,62193
108
+ sf_veritas.libs/libcom_err-730ca923.so.2.1,sha256=VY1sTtQQu5RJd_Y1BXtBFjqlFhiPCTMwGWZgzqu-LoQ,21545
109
+ sf_veritas.libs/libcrypt-52aca757.so.1.1.0,sha256=Rl6iBH7tI_X3G4lQfsNm9goOdNC29wIf_I77cVjQESc,140977
110
+ sf_veritas.libs/libcrypto-bdaed0ea.so.1.1.1k,sha256=teTU1EbwIqcxLKEwQCCxVDDLNnMUyvbgJRzPb37I3uo,3215921
111
+ sf_veritas.libs/libcurl-eaa3cf66.so.4.5.0,sha256=hroKYAZOcO-4k4jxJH601wsY9b9DcuVPSl2MJm_7zdk,619977
112
+ sf_veritas.libs/libgssapi_krb5-323bbd21.so.2.2,sha256=g7M9iJBAkDqHGJwEbffYKEFzUMxlECksKR-oNoqxJQw,378601
113
+ sf_veritas.libs/libidn2-2f4a5893.so.0.3.6,sha256=tElml3gdyDiZ61Dr9wncteS_pazPfYFpBEhnBI7aqQw,140377
114
+ sf_veritas.libs/libk5crypto-9a74ff38.so.3.1,sha256=H2bSp-k9CESbvUWKOX8THudxFSnVBTe5A965Hmk9DQI,110089
115
+ sf_veritas.libs/libkeyutils-2777d33d.so.1.6,sha256=Lxjn7VlUyYm6A8b4JMCptowYVig9FWTq8mEwh2PphLo,17929
116
+ sf_veritas.libs/libkrb5-a55300e8.so.3.3,sha256=piB8cdNRyNx9shGUUKxu1qZGbeWEtHDmZ87lQICcucU,1027129
117
+ sf_veritas.libs/libkrb5support-e6594cfc.so.0.1,sha256=XqP6drjaA1_eP3XEZn5884n1b9yj9AwSGhNGIyk5YuQ,85161
118
+ sf_veritas.libs/liblber-2-d20824ef.4.so.2.10.9,sha256=6G4ibGHHBo_PBkFm3aMbB01j8Vty9pr3Veg9iEdYU2U,73361
119
+ sf_veritas.libs/libldap-2-cea2a960.4.so.2.10.9,sha256=V-m-eZbx9pvIdNdOdshRynM5LkLogoh72p-hRIx0-bs,360849
120
+ sf_veritas.libs/libnghttp2-39367a22.so.14.17.0,sha256=llfQElLBK10tju2J2kujCoHMuQDnxCASAhoWmQfQOO8,175025
121
+ sf_veritas.libs/libpcre2-8-516f4c9d.so.0.7.1,sha256=IcbljW_oKuAVlrAwKz8qtRZxfi1sQH_iKxPSoNpzsmU,547745
122
+ sf_veritas.libs/libpsl-99becdd3.so.5.3.1,sha256=-lZ0GFyiQL7qiljsxFuu4GogshjaGJ-ny0F_oGpMiX8,80217
123
+ sf_veritas.libs/libsasl2-7de4d792.so.3.0.0,sha256=m_47nyN8AdR8gbjvl8eqmCy3_jPPiWCKBJFuDPlmc18,138761
124
+ sf_veritas.libs/libselinux-d0805dcb.so.1,sha256=iYGaLO-LIy5-WEihMiXHpeJUXyq56DDqGU49JbpfTu4,195097
125
+ sf_veritas.libs/libssh-c11d285b.so.4.8.7,sha256=0LTH3uVaOL-nK-nhCfIVf7RhqzJOMBP2BRg7snvmOEA,500185
126
+ sf_veritas.libs/libssl-60250281.so.1.1.1k,sha256=MCNuTI3K8vc-l_BvN5nElqPps2xW3COe2EZnuxtfQrE,666865
127
+ sf_veritas.libs/libunistring-05abdd40.so.2.1.0,sha256=IxfT3Vuwa8TtEgGZDPNNtS5NtygqrJJwvXgaV8Ku3HU,1826161
128
+ sf_veritas.libs/libuuid-95b83d40.so.1.3.0,sha256=Bj-_E8XyWfgC65o6pTuT9qLNcuA97EYDyCUUOfDR2q0,38041
129
+ sf_veritas-0.10.5.dist-info/METADATA,sha256=lMcf1qE6HhGc5dwqhBapWkk4tmv0ZsEoIMxzbuPvPv4,3395
130
+ sf_veritas-0.10.5.dist-info/WHEEL,sha256=LRtmai5TSsX_T-WRh2dbi-sRv3LZ74uKLnFBd1QJaOw,113
131
+ sf_veritas-0.10.5.dist-info/entry_points.txt,sha256=4SBtcBpbZZNeRmM0CWOr9hUj6K_cWepi2IO3RaH8j8E,56
132
+ sf_veritas-0.10.5.dist-info/top_level.txt,sha256=oGrJM_aM9ICFgDJ_otJR4PL5zmPNsub9j2t1CZ-b0MQ,11
133
+ sf_veritas-0.10.5.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.7.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-manylinux_2_28_x86_64
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ sf-veritas = sf_veritas.cli:fire_main
@@ -0,0 +1 @@
1
+ sf_veritas
Binary file
Binary file
Binary file
Binary file