bubble-analysis 0.2.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 (46) hide show
  1. bubble/__init__.py +3 -0
  2. bubble/cache.py +207 -0
  3. bubble/cli.py +470 -0
  4. bubble/config.py +52 -0
  5. bubble/detectors.py +90 -0
  6. bubble/enums.py +65 -0
  7. bubble/extractor.py +829 -0
  8. bubble/formatters.py +887 -0
  9. bubble/integrations/__init__.py +92 -0
  10. bubble/integrations/base.py +98 -0
  11. bubble/integrations/cli_scripts/__init__.py +49 -0
  12. bubble/integrations/cli_scripts/cli.py +108 -0
  13. bubble/integrations/cli_scripts/detector.py +149 -0
  14. bubble/integrations/django/__init__.py +63 -0
  15. bubble/integrations/django/cli.py +111 -0
  16. bubble/integrations/django/detector.py +331 -0
  17. bubble/integrations/django/semantics.py +40 -0
  18. bubble/integrations/fastapi/__init__.py +57 -0
  19. bubble/integrations/fastapi/cli.py +110 -0
  20. bubble/integrations/fastapi/detector.py +176 -0
  21. bubble/integrations/fastapi/semantics.py +14 -0
  22. bubble/integrations/flask/__init__.py +57 -0
  23. bubble/integrations/flask/cli.py +110 -0
  24. bubble/integrations/flask/detector.py +191 -0
  25. bubble/integrations/flask/semantics.py +19 -0
  26. bubble/integrations/formatters.py +268 -0
  27. bubble/integrations/generic/__init__.py +13 -0
  28. bubble/integrations/generic/config.py +106 -0
  29. bubble/integrations/generic/detector.py +346 -0
  30. bubble/integrations/generic/frameworks.py +145 -0
  31. bubble/integrations/models.py +68 -0
  32. bubble/integrations/queries.py +481 -0
  33. bubble/loader.py +118 -0
  34. bubble/models.py +397 -0
  35. bubble/propagation.py +737 -0
  36. bubble/protocols.py +104 -0
  37. bubble/queries.py +627 -0
  38. bubble/results.py +211 -0
  39. bubble/stubs.py +89 -0
  40. bubble/timing.py +144 -0
  41. bubble_analysis-0.2.0.dist-info/METADATA +264 -0
  42. bubble_analysis-0.2.0.dist-info/RECORD +46 -0
  43. bubble_analysis-0.2.0.dist-info/WHEEL +5 -0
  44. bubble_analysis-0.2.0.dist-info/entry_points.txt +2 -0
  45. bubble_analysis-0.2.0.dist-info/licenses/LICENSE +21 -0
  46. bubble_analysis-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,46 @@
1
+ bubble/__init__.py,sha256=1xAFxCucbe8Id65q6ReTBn1ipRs5Yn8sRjkREJEu1U8,83
2
+ bubble/cache.py,sha256=-cqvtjmc8w_7ozJSXtqxxI1eKaYryuHeb5Vd9mk1kko,7418
3
+ bubble/cli.py,sha256=76Yj7mvczncJEX7ajtiOUjl8-R10n6bUWQBoSigxhnc,17293
4
+ bubble/config.py,sha256=SUwXeHKRkuHOl06JDcoTAe1o5wNIW7kIcBSCxIns3j4,1668
5
+ bubble/detectors.py,sha256=YtRbTECmQvs07375vDhh3XlpVGWCTtH1S_Pj2QcBNCA,3146
6
+ bubble/enums.py,sha256=GuPbw2nr076fcnBQpOlKLrEc7rrf2Vnk8XjT2O37CfQ,1516
7
+ bubble/extractor.py,sha256=ji8EG88bzkpZ1nbRA-PxGHWOxEXU8STUG_Hye52rRsU,29453
8
+ bubble/formatters.py,sha256=x2jGJsGU9RsF9evs55B3NWitw66ePFzwsVc-K1t7Qiw,34031
9
+ bubble/loader.py,sha256=-KepjgS9EVk0JjCyGrX2xr6ihbbWyGDrVE61IhlFEJE,4217
10
+ bubble/models.py,sha256=_v4k3Wf2ZBQC6pZkBLU_cbcm0PldrwQ-CsryD5TbiAE,12315
11
+ bubble/propagation.py,sha256=DzADHu-ka7bkiDUamwvCpEipk7V_38lo47eRX2dOw0Y,27880
12
+ bubble/protocols.py,sha256=ER05yyvNDAcOpbgo3SFDHcccn2tFbp7SFGGVq9-kG48,3443
13
+ bubble/queries.py,sha256=cSStEuxZsrKJyyUicxIBc1QbmxqFuoFYtQVJsOBcyvc,20381
14
+ bubble/results.py,sha256=lAipfj04uTS-QeKhRcq5un3xf-sOoQUV2NxsJ-2a72A,4130
15
+ bubble/stubs.py,sha256=jfM_Ji4ZrTM4UWrfB-lZtzHXbqbx4uFDF_kQOZtPvUA,2786
16
+ bubble/timing.py,sha256=COoo50IfYhyvC5xXWS2L8vj9ZOoSk_SyC9v0Kt_rt6M,3828
17
+ bubble/integrations/__init__.py,sha256=v5nUEGJJgJzpSljakQdAR2qKpheAugprBqrYb1GF7xc,2602
18
+ bubble/integrations/base.py,sha256=veDox95mLw5MOTb0_9XogahEf-1GKyV1K0G7MnV-R-I,2853
19
+ bubble/integrations/formatters.py,sha256=It1Ma4jcL5taVU63dBdN_yvLI98AuVtVXPeUsMzZTaY,10041
20
+ bubble/integrations/models.py,sha256=2dioXNhpdLnz9er2xycDeVH23H45CZv-Xf-BE1uEV8Q,1605
21
+ bubble/integrations/queries.py,sha256=I_ydltY4dDYybLfkfKZj4jBo2XatQlmFcqtQkCCw9II,16786
22
+ bubble/integrations/cli_scripts/__init__.py,sha256=4YEoXXapVwz6tbnhTAcpLkC8C9lST7TsQ0XvKbeBG2E,1320
23
+ bubble/integrations/cli_scripts/cli.py,sha256=Kjw02axBGNPpsesgSb9V3DdtG8s-iCcYTJZnaT6KBPA,3930
24
+ bubble/integrations/cli_scripts/detector.py,sha256=mvev_ApKRv0i5WZ3NMbp9HWHA5sndLMpLhgsd5svc7A,4499
25
+ bubble/integrations/django/__init__.py,sha256=KsIzlw8gcMLDEfM54azxciWJaLJrzUyHQbYxs6HuwQU,2037
26
+ bubble/integrations/django/cli.py,sha256=pmg2yGKNUBkWd_jZpgdMMzuswH3HMyZEkzIrV4Q1ix4,4140
27
+ bubble/integrations/django/detector.py,sha256=hxXsZk14WYlSpWmaD9TWPa4LeV2DM_T3GmOVbeADvrA,11370
28
+ bubble/integrations/django/semantics.py,sha256=qdO6UC2U7brzc8SRrARLU9ivOGEQ59pN_TMXFpugYDk,1761
29
+ bubble/integrations/fastapi/__init__.py,sha256=aIV3eWhX9Z_8od6e_EaTU9LCS2BvezgWlQasWTXTjKU,1867
30
+ bubble/integrations/fastapi/cli.py,sha256=odJwIehPKSLfUqxkLi8SWwmWmV02mSCyd2OiZssh4L8,4129
31
+ bubble/integrations/fastapi/detector.py,sha256=6LoCdomsHA33wPRpXz6tWCzSFKTmul9NOoChAFSjaWo,5767
32
+ bubble/integrations/fastapi/semantics.py,sha256=xtHs8HUFMzpRMvE1a4uqCflWiGY1-5_v3ACCz0BBnUg,499
33
+ bubble/integrations/flask/__init__.py,sha256=IaWU0TxLicbLsk0KdyYL8-VAjaujdZpjE6tvD5iu1Ws,1823
34
+ bubble/integrations/flask/cli.py,sha256=Iz0J9C2Kb4zg3P30sI1iJ0Ey320lpMLN74MeRw0K2F8,4083
35
+ bubble/integrations/flask/detector.py,sha256=3RUYmzDRbYFttrcVVwu5xGQk7BRekfYvk0AzNfCAJ0M,6511
36
+ bubble/integrations/flask/semantics.py,sha256=gf95XfpaztI1ASQfen38wyjbbLVIH_H2Xc6YwScCBV4,675
37
+ bubble/integrations/generic/__init__.py,sha256=daDOwBkgmyA6mHOi6JbznZfSkIJx_6TMoy30wrKOPHE,321
38
+ bubble/integrations/generic/config.py,sha256=61mKh9xRKPPo0sfI_SFQnIvoEMaUNFrbE21215LM1gc,3236
39
+ bubble/integrations/generic/detector.py,sha256=Z0PSRLVF96CJ-FN473M8Txj28etMeEJS0fmaPV1Ev6M,12460
40
+ bubble/integrations/generic/frameworks.py,sha256=s8fpdPD_71ZJvIbPv4VVvplLnp7cAb5W418fg5hu0uM,4060
41
+ bubble_analysis-0.2.0.dist-info/licenses/LICENSE,sha256=dUhuoK-TCRQMpuLEAdfme-qPSJI0TlcH9jlNxeg9_EQ,1056
42
+ bubble_analysis-0.2.0.dist-info/METADATA,sha256=XmSVfFbo8r4ts0Ak92w94EGI2OqLiDDaaZPcREp01P0,9040
43
+ bubble_analysis-0.2.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
44
+ bubble_analysis-0.2.0.dist-info/entry_points.txt,sha256=IsRFTKJQI7FCzniBdLSC4lebLcfyAvPnI9x1gpYFL3c,42
45
+ bubble_analysis-0.2.0.dist-info/top_level.txt,sha256=PI9j20Ka7CoFSwoBiRcLAg9xm-BhUQujkDOn8ykeIjU,7
46
+ bubble_analysis-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ bubble = bubble.cli:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ bubble