pyrestkit 0.0.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 (115) hide show
  1. pyrestkit/__init__.py +35 -0
  2. pyrestkit/ai/__init__.py +17 -0
  3. pyrestkit/ai/analyzer.py +137 -0
  4. pyrestkit/ai/client.py +101 -0
  5. pyrestkit/ai/config/__init__.py +5 -0
  6. pyrestkit/ai/config/ai_config.py +200 -0
  7. pyrestkit/ai/exceptions.py +22 -0
  8. pyrestkit/ai/generators/__init__.py +0 -0
  9. pyrestkit/ai/models.py +44 -0
  10. pyrestkit/ai/parsers/__init__.py +0 -0
  11. pyrestkit/ai/prompts/failure_analysis.md +21 -0
  12. pyrestkit/ai/provider.py +58 -0
  13. pyrestkit/ai/providers/__init__.py +21 -0
  14. pyrestkit/ai/providers/anthropic.py +85 -0
  15. pyrestkit/ai/providers/azure_openai.py +84 -0
  16. pyrestkit/ai/providers/base.py +39 -0
  17. pyrestkit/ai/providers/bedrock.py +70 -0
  18. pyrestkit/ai/providers/cohere.py +82 -0
  19. pyrestkit/ai/providers/gemini.py +113 -0
  20. pyrestkit/ai/providers/groq.py +81 -0
  21. pyrestkit/ai/providers/mistral.py +88 -0
  22. pyrestkit/ai/providers/ollama.py +82 -0
  23. pyrestkit/ai/providers/openai.py +124 -0
  24. pyrestkit/ai/utils/__init__.py +0 -0
  25. pyrestkit/ai/utils/prompt_loader.py +52 -0
  26. pyrestkit/assertions/__init__.py +7 -0
  27. pyrestkit/assertions/assertion_exception.py +4 -0
  28. pyrestkit/assertions/response_assertions.py +181 -0
  29. pyrestkit/auth/__init__.py +11 -0
  30. pyrestkit/auth/auth_strategy.py +14 -0
  31. pyrestkit/auth/authentication_manager.py +35 -0
  32. pyrestkit/auth/strategies/__init__.py +5 -0
  33. pyrestkit/auth/strategies/api_key_auth.py +18 -0
  34. pyrestkit/auth/strategies/basic_auth.py +24 -0
  35. pyrestkit/auth/strategies/bearer_auth.py +17 -0
  36. pyrestkit/auth/token_cache.py +44 -0
  37. pyrestkit/auth/token_manager.py +32 -0
  38. pyrestkit/auth/token_provider.py +12 -0
  39. pyrestkit/auth/token_response.py +13 -0
  40. pyrestkit/builder/__init__.py +5 -0
  41. pyrestkit/builder/fluent_request_builder.py +167 -0
  42. pyrestkit/clients/__init__.py +7 -0
  43. pyrestkit/clients/base_client.py +68 -0
  44. pyrestkit/clients/user_client.py +66 -0
  45. pyrestkit/config/__init__.py +5 -0
  46. pyrestkit/config/config.py +97 -0
  47. pyrestkit/constants/__init__.py +0 -0
  48. pyrestkit/constants/content_types.py +0 -0
  49. pyrestkit/constants/headers.py +0 -0
  50. pyrestkit/constants/status_codes.py +0 -0
  51. pyrestkit/core/__init__.py +13 -0
  52. pyrestkit/core/api_client.py +129 -0
  53. pyrestkit/core/logger.py +41 -0
  54. pyrestkit/core/request_builder.py +45 -0
  55. pyrestkit/core/request_executor.py +64 -0
  56. pyrestkit/core/request_logger.py +0 -0
  57. pyrestkit/core/response_logger.py +0 -0
  58. pyrestkit/core/session_manager.py +19 -0
  59. pyrestkit/database/__init__.py +0 -0
  60. pyrestkit/endpoints/__init__.py +5 -0
  61. pyrestkit/endpoints/base_endpoints.py +32 -0
  62. pyrestkit/endpoints/order_endpoints.py +9 -0
  63. pyrestkit/endpoints/payment_endpoints.py +5 -0
  64. pyrestkit/endpoints/user_endpoints.py +48 -0
  65. pyrestkit/exceptions/__init__.py +21 -0
  66. pyrestkit/exceptions/api_exception.py +8 -0
  67. pyrestkit/exceptions/authentication_exception.py +10 -0
  68. pyrestkit/exceptions/configuration_exception.py +10 -0
  69. pyrestkit/exceptions/exception_mapper.py +32 -0
  70. pyrestkit/exceptions/network_exception.py +10 -0
  71. pyrestkit/exceptions/response_exception.py +10 -0
  72. pyrestkit/exceptions/serialization_exception.py +10 -0
  73. pyrestkit/exceptions/validation_exception.py +10 -0
  74. pyrestkit/factories/__init__.py +5 -0
  75. pyrestkit/factories/base_factory.py +25 -0
  76. pyrestkit/factories/user_factory.py +37 -0
  77. pyrestkit/hooks/__init__.py +5 -0
  78. pyrestkit/hooks/hook.py +27 -0
  79. pyrestkit/hooks/hook_manager.py +39 -0
  80. pyrestkit/hooks/request_hook.py +18 -0
  81. pyrestkit/hooks/response_hook.py +17 -0
  82. pyrestkit/hooks/timing_hook.py +32 -0
  83. pyrestkit/models/__init__.py +8 -0
  84. pyrestkit/models/base_response.py +11 -0
  85. pyrestkit/models/request/__init__.py +7 -0
  86. pyrestkit/models/request/create_user_request.py +11 -0
  87. pyrestkit/models/request/update_user_request.py +10 -0
  88. pyrestkit/models/response/__init__.py +5 -0
  89. pyrestkit/models/response/create_user_response.py +26 -0
  90. pyrestkit/models/response/get_user_response.py +28 -0
  91. pyrestkit/models/response/user_response.py +12 -0
  92. pyrestkit/pipeline/__init__.py +5 -0
  93. pyrestkit/pipeline/middleware.py +18 -0
  94. pyrestkit/pipeline/middleware_chain.py +11 -0
  95. pyrestkit/pipeline/pipeline.py +27 -0
  96. pyrestkit/pipeline/request_context.py +26 -0
  97. pyrestkit/response/__init__.py +8 -0
  98. pyrestkit/response/framework_response.py +271 -0
  99. pyrestkit/response/response_body.py +124 -0
  100. pyrestkit/retry/__init__.py +5 -0
  101. pyrestkit/retry/backoff.py +32 -0
  102. pyrestkit/retry/retry_handler.py +52 -0
  103. pyrestkit/retry/retry_policy.py +33 -0
  104. pyrestkit/serializers/__init__.py +0 -0
  105. pyrestkit/serializers/response_mapper.py +25 -0
  106. pyrestkit/types/__init__.py +0 -0
  107. pyrestkit/types/model_protocol.py +17 -0
  108. pyrestkit/utils/__init__.py +0 -0
  109. pyrestkit/validators/__init__.py +7 -0
  110. pyrestkit/validators/response_validator.py +57 -0
  111. pyrestkit/validators/schema_validator.py +33 -0
  112. pyrestkit-0.0.0.dist-info/METADATA +741 -0
  113. pyrestkit-0.0.0.dist-info/RECORD +115 -0
  114. pyrestkit-0.0.0.dist-info/WHEEL +5 -0
  115. pyrestkit-0.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,115 @@
1
+ pyrestkit/__init__.py,sha256=y7e9clUO-9py-5wtlCSNdjDiaG6KIe-GL7Fof2MqPrQ,1083
2
+ pyrestkit/ai/__init__.py,sha256=R2U4Hqmj8y3_6_aUkP1Gp9L9pXA1WmkXn8tnS6RSa5s,520
3
+ pyrestkit/ai/analyzer.py,sha256=Ui3IDu_p6vH8yqZg3N8IamG_Xl8i2sj3atBGjxkv2zg,3330
4
+ pyrestkit/ai/client.py,sha256=6vvTmpgAaRL7TBwpVIHib2GQDiZD7mugq4Wubk4SicY,2501
5
+ pyrestkit/ai/exceptions.py,sha256=_autLoAiHV0G1AXTjoiPSxipoGxsvJy64zhUO5bLn-4,434
6
+ pyrestkit/ai/models.py,sha256=wyefX_U7Y71x6naz3u10bEyEtU-zsLVNBv0zBR31cLM,1156
7
+ pyrestkit/ai/provider.py,sha256=hbyB2jWf3JDgAKyZol0y-FCNC8QjB-5ANtNYsM_J2Oo,1174
8
+ pyrestkit/ai/config/__init__.py,sha256=0UTczDh0tpLGzPt5SNPXpYB5wGPiAThsjei05f6vMBk,82
9
+ pyrestkit/ai/config/ai_config.py,sha256=9_f8pP3feh1k6PsdljQXBFWishLRRTy3bni0D0wIghg,5262
10
+ pyrestkit/ai/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pyrestkit/ai/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
+ pyrestkit/ai/prompts/failure_analysis.md,sha256=t-5dBOQ6HgYkOGzMwWIfzmsUIvlVRF3PkHR7Abw2T1Q,679
13
+ pyrestkit/ai/providers/__init__.py,sha256=5YAuTseNJb-Ze-umH2kMlB4Tg2unB0kh8xBOqnny6TA,769
14
+ pyrestkit/ai/providers/anthropic.py,sha256=l8i_Jzv2JTMH-_nQyy1Vt5Nys4s4qcOggHOWrxCoKCU,2514
15
+ pyrestkit/ai/providers/azure_openai.py,sha256=PWmb7Zz5OgLmhvK514mbktuykrGcPddEt2o4RPsvSdY,2597
16
+ pyrestkit/ai/providers/base.py,sha256=YMNPmkRLdG3W0rV88KzuNXpV4urqROIk4zIdxLoWQ4s,816
17
+ pyrestkit/ai/providers/bedrock.py,sha256=Ogh03m5WQezxHmsGXAzBFhxq3QXBA2lIimtmDGxL8VQ,2054
18
+ pyrestkit/ai/providers/cohere.py,sha256=EkJiLgFAjvPbxt2caIAI-Dydhyk9ksHcd54b19D0Gb4,2300
19
+ pyrestkit/ai/providers/gemini.py,sha256=hnCdchL-bKl-64tDEiEbgDbooeQriLJy0vp0DbrX8pk,3185
20
+ pyrestkit/ai/providers/groq.py,sha256=ixoQ6SxuV6N-JJiSRKrRYFsDw7tjVNIFW8GhqohEtgk,2462
21
+ pyrestkit/ai/providers/mistral.py,sha256=i6kH9gy5lGRXVMuXOCQw1bCSc0vTsLZEkbFnp-GhvQU,2648
22
+ pyrestkit/ai/providers/ollama.py,sha256=uWYntmIn-CFlE6qp4ey2tQ9mD9UWaER-MKR4xl26r04,2106
23
+ pyrestkit/ai/providers/openai.py,sha256=BD4L_DnFn7qZp7C2f3il5mUUHkXVgTSD_DIaflWVZO8,3092
24
+ pyrestkit/ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ pyrestkit/ai/utils/prompt_loader.py,sha256=CKkztLt_UKbVZ6a2uPw1hcHZJX6Xk4mHMWS9-mUAU5A,1211
26
+ pyrestkit/assertions/__init__.py,sha256=OivEVTErJph4XkulyU2qdgZT5ulF9gBYF2Lcb41La58,171
27
+ pyrestkit/assertions/assertion_exception.py,sha256=AGUUZdpg8QJBZMeI_UGIqZuCcxUYzgv92tCqe3zyfoA,103
28
+ pyrestkit/assertions/response_assertions.py,sha256=nObvW2IxKGT2DpIM4dzXl2h68koX1-TRAtW12uTEJ98,4367
29
+ pyrestkit/auth/__init__.py,sha256=AWe5jjIBjf6CibWzbS62nrpvsmRLodt0iJHwavMpTCU,296
30
+ pyrestkit/auth/auth_strategy.py,sha256=JmF-6fd3LYb9XRNFeGgpmatDGuv0jiznZs27WX7OV9Y,394
31
+ pyrestkit/auth/authentication_manager.py,sha256=Lg-KbtOKVwCzfStB26Wr8Yk4iEy_X_dx3BiA5obP1VE,858
32
+ pyrestkit/auth/token_cache.py,sha256=p3l2mVbAkiAiDe35AxifNEyjodbTwxPsf-Zjcc4rZ10,1069
33
+ pyrestkit/auth/token_manager.py,sha256=wqlVjnSrc6NuaHSog7z1HXBCae8UDBJKH9mhlrAAsyA,718
34
+ pyrestkit/auth/token_provider.py,sha256=4QV3VtrCSWbvNYxvR6-RQImzYMZmZ88YWGSmDXNRPDs,268
35
+ pyrestkit/auth/token_response.py,sha256=fLGGak-5Onscf37fLgDe_WYM0LXyrQZS8TEuFHvg2k4,243
36
+ pyrestkit/auth/strategies/__init__.py,sha256=5lIBSWbgDQ7bwu6K8jnfQm1xdtMBoPX_DnsV1ogdGqg,160
37
+ pyrestkit/auth/strategies/api_key_auth.py,sha256=0yf6pbJu7qnhlMuCSmSuqXuffMlU7DMHozW0y7ua7Hc,443
38
+ pyrestkit/auth/strategies/basic_auth.py,sha256=aJ5mz8aoozrkX0a_Am__GRhhxHHYIe7lH9T8ILOUDu0,579
39
+ pyrestkit/auth/strategies/bearer_auth.py,sha256=7h4tC66CYTiFeEWOsSmqueqlHgAKi1RpQa2Lx2nm-GU,460
40
+ pyrestkit/builder/__init__.py,sha256=V-ItR9tPRoU1KmAM5YYA1aUWFB9G7htIEj-keTT4mfA,100
41
+ pyrestkit/builder/fluent_request_builder.py,sha256=gTNqdLdEG6Z3XcpBTPLIv2b6ef_9z6_q50HhWQ1fkQc,3460
42
+ pyrestkit/clients/__init__.py,sha256=E2hyXlGbE7ta61lpzUgczjHTvWUlfXl-n9htsmT_O6c,123
43
+ pyrestkit/clients/base_client.py,sha256=-HXjTsjudNMLybGAPNGnmKHxQkob0d5m45Un12sjq0o,1347
44
+ pyrestkit/clients/user_client.py,sha256=eau7IalciVPnR2UWurACya8znl7azdGrxoQSlz5qTfA,1640
45
+ pyrestkit/config/__init__.py,sha256=gbKr5hxv60CVJheVM7VNpm61E1A0DMvEuifFWzdIats,70
46
+ pyrestkit/config/config.py,sha256=Z0UOlL0BVsyeXmyztin6XjUuKc3_3XD7A6UpU_XqSfs,2263
47
+ pyrestkit/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ pyrestkit/constants/content_types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ pyrestkit/constants/headers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ pyrestkit/constants/status_codes.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ pyrestkit/core/__init__.py,sha256=ywF_d5AnwF02PoNhhgl9uk7owUIq_GRL2ea_2rS1yoE,326
52
+ pyrestkit/core/api_client.py,sha256=Kheq4hk51futRmEjK3j4AaisbIFXFoW8qmZW-sarEbM,3034
53
+ pyrestkit/core/logger.py,sha256=nk575wjbdRswXOpaOMI_qpibiuhFE_VstgTMoccYsHM,1000
54
+ pyrestkit/core/request_builder.py,sha256=RZ0ZHlzy2JfZfGebGfCtBs5P0VSjXQonBgSi2fTGyos,1087
55
+ pyrestkit/core/request_executor.py,sha256=THnE-D-5UBPIBKXTDfHNDfAFzKPsz-drI7E9Ri1a_2k,1721
56
+ pyrestkit/core/request_logger.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ pyrestkit/core/response_logger.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ pyrestkit/core/session_manager.py,sha256=lInjjQgXRoM9EnS0h44HOntEcHFozuWmr43-IPgwY34,372
59
+ pyrestkit/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ pyrestkit/endpoints/__init__.py,sha256=7PoV0ESmr5wy6JP3OwwclM1exE5ZHuIXogrWPJkVIYU,78
61
+ pyrestkit/endpoints/base_endpoints.py,sha256=1tZiRpXOweQZiJPSY29qlGfuznLyxuPRhdyw4lC89rU,548
62
+ pyrestkit/endpoints/order_endpoints.py,sha256=kr6oXjUKbTThl3o161DVJ3AGJaSc0bZN1LZQdsvoJsw,162
63
+ pyrestkit/endpoints/payment_endpoints.py,sha256=C37CkhRBq-fuvt_LYN3HHOrH9ltL-uTDJncMrefraos,129
64
+ pyrestkit/endpoints/user_endpoints.py,sha256=St4cMwsPvwTLTKrgdYEZ06FUevroZXoHIpSKd4_Bc18,988
65
+ pyrestkit/exceptions/__init__.py,sha256=og1SN_lqGcWtCeeTFGZf5O4MzwMfezyJI9ITTqWIP4M,649
66
+ pyrestkit/exceptions/api_exception.py,sha256=WP1lv-yEo-oqcwfEiBPPg6YJHranPkv-Cqy0fbwENyA,217
67
+ pyrestkit/exceptions/authentication_exception.py,sha256=fxzPPksW7yBR8yP3sMjwYm4oCKsJGE1spoX8DspSTp4,269
68
+ pyrestkit/exceptions/configuration_exception.py,sha256=W-5S7p8LWKuV7eWP30aUh0U2daf8Sm09M2zWOG7m8YY,275
69
+ pyrestkit/exceptions/exception_mapper.py,sha256=BxW_zvjq9c64FYlAq57XtXYtVbbb0JImCYb5_AdMuxc,838
70
+ pyrestkit/exceptions/network_exception.py,sha256=OYpuOeyeOqfGw5As99FJ_E5_hNuJgJ7Q8LNKf7wSkSU,266
71
+ pyrestkit/exceptions/response_exception.py,sha256=WqRZYiGDQ5VPud1z-5E-Nudi1aONdq8Xr6wbgjB8Y7M,274
72
+ pyrestkit/exceptions/serialization_exception.py,sha256=95rQLxgy1a3Oauhu9biQdjJgzzBDV67GvmNx1fE2XvM,282
73
+ pyrestkit/exceptions/validation_exception.py,sha256=RXtK2KwvZX0JEYHEs7Rihhi4KXafAeQ1Uw7kqHSY4mY,266
74
+ pyrestkit/factories/__init__.py,sha256=uj3x_O_QWJD_Dsr1pRdKAWQUQ_e1hzlAzALZSVvuW0Q,72
75
+ pyrestkit/factories/base_factory.py,sha256=TPTjx7Sd-Hxu6DNzi_aUGI3tfibticb4YjT3SLaSyVg,496
76
+ pyrestkit/factories/user_factory.py,sha256=1zWO0u34yIhA44V81xuQ2rXFeCiXdNYzExU0jjU83gc,838
77
+ pyrestkit/hooks/__init__.py,sha256=Yp0iWXl7qABtyJprBYvKByTzD_nA7xGGZlHLsAzln2c,72
78
+ pyrestkit/hooks/hook.py,sha256=4pY9OFsQA0yo36H2BmTsBMh9mzMv7i2lmvJlrb93HCM,431
79
+ pyrestkit/hooks/hook_manager.py,sha256=lkeGqrreZxWClVV4fhE4gss4sDFEaSUm_iqXS_05d5E,746
80
+ pyrestkit/hooks/request_hook.py,sha256=BLTjLhYXG9M-g1z_jupJY4UcpJpisIVhIcpyCeokb94,331
81
+ pyrestkit/hooks/response_hook.py,sha256=x4Ds2JA2ULIeNHuxtSKAtbHeSPUiWCmTSpbs9SRKznU,296
82
+ pyrestkit/hooks/timing_hook.py,sha256=BxsZNE_JJOOLC8jqhzyCczze9oRf49A3gBi8A8SAFRo,640
83
+ pyrestkit/models/__init__.py,sha256=KX5IAaTAaWxzDCeEWn0zZkPc6sasTY773AXfj07KyW4,178
84
+ pyrestkit/models/base_response.py,sha256=YgZupb7JXk5-xVKKMPiY7ns6nuI8FirsEq5cMlnUzbY,205
85
+ pyrestkit/models/request/__init__.py,sha256=DSBaryyDEWog1s6Wip0xjxwr_OGuIikIeTTvU9Bjk-s,167
86
+ pyrestkit/models/request/create_user_request.py,sha256=uSyI-grCPRx1vt0fy2yZUHeoDTL8TrVvgbP8ZyYJiMg,167
87
+ pyrestkit/models/request/update_user_request.py,sha256=wfZq5g5veeRJVEZryvr3Pga-HPb5bTSGqbNR8tYfsTc,153
88
+ pyrestkit/models/response/__init__.py,sha256=8Dr5fEATRHZBVnbqAcmmjMJmaOez-xOCXcaGAbBWTfM,75
89
+ pyrestkit/models/response/create_user_response.py,sha256=oAtd75M4VSI1ZNoVxI_51fAIS6ckwqXOA4zrKtnyOFg,572
90
+ pyrestkit/models/response/get_user_response.py,sha256=Uq7nBSen3Glr5ZBLyErdDRuaTZlvGMcHYTsT3VmLt1E,640
91
+ pyrestkit/models/response/user_response.py,sha256=bvZiEAz-s1vGnLrUvZ9kc6px726q6wew3ftRMnQKTL0,197
92
+ pyrestkit/pipeline/__init__.py,sha256=CraaQlvLPNqQq13UoHK8ztreLlFhRIx7lUSjs5gBWrY,76
93
+ pyrestkit/pipeline/middleware.py,sha256=UA_eyOGpa4Jjxgk1zafZEXKlMU8A_9xUFUuvPTyPfDE,355
94
+ pyrestkit/pipeline/middleware_chain.py,sha256=UdHc_cR1LbIecoOXiFiOvmKRn3N-bZ9_3sNvK0Zq7mA,241
95
+ pyrestkit/pipeline/pipeline.py,sha256=qWySYRSgTX3YNTTzKigaYz3Vbb5cfYJCV3yLdSzP8Wo,606
96
+ pyrestkit/pipeline/request_context.py,sha256=9aKkuHSW2i24W9p6OBJlZOZqUZG1l-D0ifKucyMXqac,531
97
+ pyrestkit/response/__init__.py,sha256=4LXZYT2tpxTUyGOIdPpVDWi9y7vvXOKCVgcEIOmoYzY,192
98
+ pyrestkit/response/framework_response.py,sha256=eWrNxrhXtbn8HVpralBWhlX0tqkWbyi3b_i1YViQuiU,6240
99
+ pyrestkit/response/response_body.py,sha256=Meuek4CSji9WMT5UaR6diECr1taPQyGCfyPPU3NU7Uc,2625
100
+ pyrestkit/retry/__init__.py,sha256=6DvzJUtcS_mHyVPQiOdjIJ3IG-xfQ6-GO3ZGjEamb2E,75
101
+ pyrestkit/retry/backoff.py,sha256=n-EcWfEVscrA-hAORKNiHbtF9tWW9yFGMrX-ZDMajyk,490
102
+ pyrestkit/retry/retry_handler.py,sha256=6OZutn4yXVq314Pf4sABudm6zaHuef6gLeE7R1H1zdc,1252
103
+ pyrestkit/retry/retry_policy.py,sha256=purWbHWSgvI_j0ajWbjzkKQssq2SV9hoDCjhvLGVkrQ,562
104
+ pyrestkit/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ pyrestkit/serializers/response_mapper.py,sha256=u4Wz7t7dCCekqE1CSBK3XFEO5FjB7rIHaXYBRpAObJ4,617
106
+ pyrestkit/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ pyrestkit/types/model_protocol.py,sha256=ngKqcQ2-cNmLZORySmyDz-8bk1znmrp30PqAIfOLXgY,269
108
+ pyrestkit/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ pyrestkit/validators/__init__.py,sha256=JBNfxhZsLmJgII41PcD6KgsWGGzxYqrGRvZoI3jmLlI,159
110
+ pyrestkit/validators/response_validator.py,sha256=GCRZORHwroKcz2B0wz6pMo2Hu8ZCNTvYRLvgCZM_zTs,1621
111
+ pyrestkit/validators/schema_validator.py,sha256=A9dVUfIWRs4Eio7qPkHpLe_A8d6VOcDK7w3XpUbeWK8,718
112
+ pyrestkit-0.0.0.dist-info/METADATA,sha256=x5HbuGCtvQXMoOgmclsv7B2arNL6K2o0OHusQfO90qI,12994
113
+ pyrestkit-0.0.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
114
+ pyrestkit-0.0.0.dist-info/top_level.txt,sha256=6kLf6KOYB9YYulTuWkeDCYgjhN0kaNoYf_F-OqbP0uc,10
115
+ pyrestkit-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pyrestkit