band-client-rest 0.0.7__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 (287) hide show
  1. band_client_rest-0.0.7/PKG-INFO +199 -0
  2. band_client_rest-0.0.7/README.md +171 -0
  3. band_client_rest-0.0.7/pyproject.toml +86 -0
  4. band_client_rest-0.0.7/src/thenvoi_rest/__init__.py +674 -0
  5. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/__init__.py +49 -0
  6. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/client.py +284 -0
  7. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/raw_client.py +482 -0
  8. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/types/__init__.py +47 -0
  9. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/types/create_agent_chat_response.py +20 -0
  10. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/types/get_agent_chat_response.py +20 -0
  11. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/types/list_agent_chats_response.py +22 -0
  12. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_chats/types/list_agent_chats_response_metadata.py +22 -0
  13. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/__init__.py +88 -0
  14. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/client.py +543 -0
  15. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/raw_client.py +906 -0
  16. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/__init__.py +86 -0
  17. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/add_agent_contact_response.py +20 -0
  18. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/add_agent_contact_response_data.py +21 -0
  19. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/add_agent_contact_response_data_status.py +5 -0
  20. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contact_requests_request_sent_status.py +7 -0
  21. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contact_requests_response.py +25 -0
  22. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contact_requests_response_data.py +22 -0
  23. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contact_requests_response_metadata.py +28 -0
  24. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contact_requests_response_metadata_received.py +27 -0
  25. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contact_requests_response_metadata_sent.py +27 -0
  26. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contacts_response.py +22 -0
  27. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/list_agent_contacts_response_metadata.py +22 -0
  28. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/remove_agent_contact_response.py +20 -0
  29. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/remove_agent_contact_response_data.py +19 -0
  30. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/respond_to_agent_contact_request_request_action.py +5 -0
  31. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/respond_to_agent_contact_request_response.py +20 -0
  32. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/respond_to_agent_contact_request_response_data.py +21 -0
  33. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_contacts/types/respond_to_agent_contact_request_response_data_status.py +7 -0
  34. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_context/__init__.py +37 -0
  35. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_context/client.py +160 -0
  36. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_context/raw_client.py +216 -0
  37. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_context/types/__init__.py +38 -0
  38. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_context/types/get_agent_chat_context_response.py +22 -0
  39. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_context/types/get_agent_chat_context_response_meta.py +37 -0
  40. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_events/__init__.py +34 -0
  41. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_events/client.py +154 -0
  42. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_events/raw_client.py +242 -0
  43. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_events/types/__init__.py +34 -0
  44. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_events/types/create_agent_chat_event_response.py +20 -0
  45. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_identity/__init__.py +34 -0
  46. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_identity/client.py +102 -0
  47. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_identity/raw_client.py +142 -0
  48. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_identity/types/__init__.py +34 -0
  49. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_identity/types/get_agent_me_response.py +20 -0
  50. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/__init__.py +55 -0
  51. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/client.py +556 -0
  52. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/raw_client.py +798 -0
  53. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/__init__.py +53 -0
  54. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/archive_agent_memory_response.py +20 -0
  55. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/create_agent_memory_response.py +20 -0
  56. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/get_agent_memory_response.py +20 -0
  57. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/list_agent_memories_response.py +22 -0
  58. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/list_agent_memories_response_meta.py +27 -0
  59. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_memories/types/supersede_agent_memory_response.py +20 -0
  60. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/__init__.py +61 -0
  61. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/client.py +952 -0
  62. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/raw_client.py +1440 -0
  63. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/__init__.py +59 -0
  64. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/create_agent_chat_message_response.py +20 -0
  65. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/get_agent_next_message_response.py +20 -0
  66. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/list_agent_messages_request_status.py +7 -0
  67. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/list_agent_messages_response.py +22 -0
  68. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/list_agent_messages_response_metadata.py +42 -0
  69. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/mark_agent_message_failed_response.py +20 -0
  70. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/mark_agent_message_processed_response.py +20 -0
  71. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_messages/types/mark_agent_message_processing_response.py +20 -0
  72. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/__init__.py +42 -0
  73. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/client.py +300 -0
  74. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/raw_client.py +526 -0
  75. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/types/__init__.py +40 -0
  76. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/types/add_agent_chat_participant_response.py +20 -0
  77. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/types/list_agent_chat_participants_response.py +20 -0
  78. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_participants/types/remove_agent_chat_participant_response.py +20 -0
  79. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_peers/__init__.py +37 -0
  80. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_peers/client.py +146 -0
  81. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_peers/raw_client.py +180 -0
  82. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_peers/types/__init__.py +38 -0
  83. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_peers/types/list_agent_peers_response.py +22 -0
  84. band_client_rest-0.0.7/src/thenvoi_rest/agent_api_peers/types/list_agent_peers_response_metadata.py +22 -0
  85. band_client_rest-0.0.7/src/thenvoi_rest/client.py +515 -0
  86. band_client_rest-0.0.7/src/thenvoi_rest/core/__init__.py +105 -0
  87. band_client_rest-0.0.7/src/thenvoi_rest/core/api_error.py +23 -0
  88. band_client_rest-0.0.7/src/thenvoi_rest/core/client_wrapper.py +79 -0
  89. band_client_rest-0.0.7/src/thenvoi_rest/core/datetime_utils.py +28 -0
  90. band_client_rest-0.0.7/src/thenvoi_rest/core/file.py +67 -0
  91. band_client_rest-0.0.7/src/thenvoi_rest/core/force_multipart.py +18 -0
  92. band_client_rest-0.0.7/src/thenvoi_rest/core/http_client.py +600 -0
  93. band_client_rest-0.0.7/src/thenvoi_rest/core/http_response.py +55 -0
  94. band_client_rest-0.0.7/src/thenvoi_rest/core/http_sse/__init__.py +42 -0
  95. band_client_rest-0.0.7/src/thenvoi_rest/core/http_sse/_api.py +112 -0
  96. band_client_rest-0.0.7/src/thenvoi_rest/core/http_sse/_decoders.py +61 -0
  97. band_client_rest-0.0.7/src/thenvoi_rest/core/http_sse/_exceptions.py +7 -0
  98. band_client_rest-0.0.7/src/thenvoi_rest/core/http_sse/_models.py +17 -0
  99. band_client_rest-0.0.7/src/thenvoi_rest/core/jsonable_encoder.py +100 -0
  100. band_client_rest-0.0.7/src/thenvoi_rest/core/pydantic_utilities.py +260 -0
  101. band_client_rest-0.0.7/src/thenvoi_rest/core/query_encoder.py +58 -0
  102. band_client_rest-0.0.7/src/thenvoi_rest/core/remove_none_from_dict.py +11 -0
  103. band_client_rest-0.0.7/src/thenvoi_rest/core/request_options.py +35 -0
  104. band_client_rest-0.0.7/src/thenvoi_rest/core/serialization.py +276 -0
  105. band_client_rest-0.0.7/src/thenvoi_rest/environment.py +7 -0
  106. band_client_rest-0.0.7/src/thenvoi_rest/errors/__init__.py +53 -0
  107. band_client_rest-0.0.7/src/thenvoi_rest/errors/bad_request_error.py +11 -0
  108. band_client_rest-0.0.7/src/thenvoi_rest/errors/conflict_error.py +11 -0
  109. band_client_rest-0.0.7/src/thenvoi_rest/errors/forbidden_error.py +11 -0
  110. band_client_rest-0.0.7/src/thenvoi_rest/errors/not_found_error.py +11 -0
  111. band_client_rest-0.0.7/src/thenvoi_rest/errors/unauthorized_error.py +11 -0
  112. band_client_rest-0.0.7/src/thenvoi_rest/errors/unprocessable_entity_error.py +10 -0
  113. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/__init__.py +61 -0
  114. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/client.py +338 -0
  115. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/raw_client.py +556 -0
  116. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/__init__.py +59 -0
  117. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/delete_my_agent_response.py +20 -0
  118. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/delete_my_agent_response_data.py +37 -0
  119. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/list_my_agents_response.py +22 -0
  120. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/list_my_agents_response_metadata.py +22 -0
  121. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/register_my_agent_response.py +20 -0
  122. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/register_my_agent_response_data.py +22 -0
  123. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/register_my_agent_response_data_agent.py +43 -0
  124. band_client_rest-0.0.7/src/thenvoi_rest/human_api_agents/types/register_my_agent_response_data_credentials.py +22 -0
  125. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/__init__.py +52 -0
  126. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/client.py +304 -0
  127. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/raw_client.py +522 -0
  128. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/types/__init__.py +50 -0
  129. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/types/create_my_chat_room_request_chat.py +22 -0
  130. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/types/create_my_chat_room_response.py +20 -0
  131. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/types/get_my_chat_room_response.py +20 -0
  132. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/types/list_my_chats_response.py +22 -0
  133. band_client_rest-0.0.7/src/thenvoi_rest/human_api_chats/types/list_my_chats_response_metadata.py +37 -0
  134. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/__init__.py +82 -0
  135. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/client.py +877 -0
  136. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/raw_client.py +1517 -0
  137. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/__init__.py +80 -0
  138. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/approve_contact_request_response.py +20 -0
  139. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/cancel_contact_request_response.py +20 -0
  140. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/create_contact_request_request_contact_request.py +27 -0
  141. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/create_contact_request_response.py +20 -0
  142. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_my_contacts_response.py +25 -0
  143. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_my_contacts_response_metadata.py +41 -0
  144. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_received_contact_requests_response.py +25 -0
  145. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_received_contact_requests_response_metadata.py +41 -0
  146. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_sent_contact_requests_request_status.py +7 -0
  147. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_sent_contact_requests_response.py +25 -0
  148. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/list_sent_contact_requests_response_metadata.py +41 -0
  149. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/reject_contact_request_response.py +20 -0
  150. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/remove_my_contact_response.py +20 -0
  151. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/remove_my_contact_response_data.py +19 -0
  152. band_client_rest-0.0.7/src/thenvoi_rest/human_api_contacts/types/resolve_handle_response.py +20 -0
  153. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/__init__.py +55 -0
  154. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/client.py +610 -0
  155. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/raw_client.py +993 -0
  156. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/__init__.py +53 -0
  157. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/archive_user_memory_response.py +20 -0
  158. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/get_user_memory_response.py +20 -0
  159. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/list_user_memories_response.py +22 -0
  160. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/list_user_memories_response_meta.py +27 -0
  161. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/restore_user_memory_response.py +20 -0
  162. band_client_rest-0.0.7/src/thenvoi_rest/human_api_memories/types/supersede_user_memory_response.py +20 -0
  163. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/__init__.py +49 -0
  164. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/client.py +344 -0
  165. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/raw_client.py +447 -0
  166. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/types/__init__.py +47 -0
  167. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/types/list_my_chat_messages_request_message_type.py +7 -0
  168. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/types/list_my_chat_messages_response.py +22 -0
  169. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/types/list_my_chat_messages_response_metadata.py +37 -0
  170. band_client_rest-0.0.7/src/thenvoi_rest/human_api_messages/types/send_my_chat_message_response.py +20 -0
  171. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/__init__.py +49 -0
  172. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/client.py +329 -0
  173. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/raw_client.py +555 -0
  174. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/types/__init__.py +47 -0
  175. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/types/add_my_chat_participant_response.py +20 -0
  176. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/types/list_my_chat_participants_request_participant_type.py +5 -0
  177. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/types/list_my_chat_participants_response.py +20 -0
  178. band_client_rest-0.0.7/src/thenvoi_rest/human_api_participants/types/remove_my_chat_participant_response.py +20 -0
  179. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/__init__.py +38 -0
  180. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/client.py +177 -0
  181. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/raw_client.py +211 -0
  182. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/types/__init__.py +40 -0
  183. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/types/list_my_peers_request_type.py +5 -0
  184. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/types/list_my_peers_response.py +22 -0
  185. band_client_rest-0.0.7/src/thenvoi_rest/human_api_peers/types/list_my_peers_response_metadata.py +22 -0
  186. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/__init__.py +38 -0
  187. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/client.py +181 -0
  188. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/raw_client.py +309 -0
  189. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/types/__init__.py +40 -0
  190. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/types/get_my_profile_response.py +20 -0
  191. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/types/update_my_profile_request_user.py +31 -0
  192. band_client_rest-0.0.7/src/thenvoi_rest/human_api_profile/types/update_my_profile_response.py +20 -0
  193. band_client_rest-0.0.7/src/thenvoi_rest/py.typed +0 -0
  194. band_client_rest-0.0.7/src/thenvoi_rest/system/__init__.py +34 -0
  195. band_client_rest-0.0.7/src/thenvoi_rest/system/client.py +161 -0
  196. band_client_rest-0.0.7/src/thenvoi_rest/system/raw_client.py +164 -0
  197. band_client_rest-0.0.7/src/thenvoi_rest/system/types/__init__.py +34 -0
  198. band_client_rest-0.0.7/src/thenvoi_rest/system/types/get_version_response.py +32 -0
  199. band_client_rest-0.0.7/src/thenvoi_rest/test/__init__.py +4 -0
  200. band_client_rest-0.0.7/src/thenvoi_rest/test/client.py +100 -0
  201. band_client_rest-0.0.7/src/thenvoi_rest/test/raw_client.py +115 -0
  202. band_client_rest-0.0.7/src/thenvoi_rest/types/__init__.py +287 -0
  203. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_contact.py +64 -0
  204. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_contact_type.py +5 -0
  205. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_me.py +67 -0
  206. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_create_request_metadata.py +31 -0
  207. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_create_request_scope.py +5 -0
  208. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_create_request_segment.py +5 -0
  209. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_create_request_system.py +5 -0
  210. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_create_request_type.py +7 -0
  211. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_scope.py +5 -0
  212. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_segment.py +5 -0
  213. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_status.py +5 -0
  214. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_system.py +5 -0
  215. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_memory_type.py +7 -0
  216. band_client_rest-0.0.7/src/thenvoi_rest/types/agent_register_request.py +31 -0
  217. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_event_message_type.py +5 -0
  218. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_event_request.py +42 -0
  219. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_message.py +72 -0
  220. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_message_request.py +32 -0
  221. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_message_request_mentions_item.py +32 -0
  222. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_participant.py +49 -0
  223. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_participant_details.py +59 -0
  224. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_participant_details_type.py +5 -0
  225. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_participant_type.py +5 -0
  226. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_room.py +47 -0
  227. band_client_rest-0.0.7/src/thenvoi_rest/types/chat_room_request.py +26 -0
  228. band_client_rest-0.0.7/src/thenvoi_rest/types/contact.py +59 -0
  229. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_contact_type.py +5 -0
  230. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request.py +82 -0
  231. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_action_response.py +32 -0
  232. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_action_response_status.py +5 -0
  233. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_recipient.py +28 -0
  234. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_recipient_type.py +5 -0
  235. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_requester.py +28 -0
  236. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_requester_type.py +5 -0
  237. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_request_status.py +7 -0
  238. band_client_rest-0.0.7/src/thenvoi_rest/types/contact_user.py +39 -0
  239. band_client_rest-0.0.7/src/thenvoi_rest/types/error.py +24 -0
  240. band_client_rest-0.0.7/src/thenvoi_rest/types/error_error.py +37 -0
  241. band_client_rest-0.0.7/src/thenvoi_rest/types/event_created_response.py +36 -0
  242. band_client_rest-0.0.7/src/thenvoi_rest/types/health_check.py +54 -0
  243. band_client_rest-0.0.7/src/thenvoi_rest/types/health_check_services.py +22 -0
  244. band_client_rest-0.0.7/src/thenvoi_rest/types/health_check_services_database.py +19 -0
  245. band_client_rest-0.0.7/src/thenvoi_rest/types/health_check_services_oban.py +20 -0
  246. band_client_rest-0.0.7/src/thenvoi_rest/types/memory.py +92 -0
  247. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_create_request.py +66 -0
  248. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_create_request_metadata.py +31 -0
  249. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_create_request_scope.py +5 -0
  250. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_create_request_segment.py +5 -0
  251. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_create_request_system.py +5 -0
  252. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_create_request_type.py +7 -0
  253. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_scope.py +5 -0
  254. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_segment.py +5 -0
  255. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_status.py +5 -0
  256. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_system.py +5 -0
  257. band_client_rest-0.0.7/src/thenvoi_rest/types/memory_type.py +7 -0
  258. band_client_rest-0.0.7/src/thenvoi_rest/types/message_sent_response.py +37 -0
  259. band_client_rest-0.0.7/src/thenvoi_rest/types/message_sent_response_recipients_item.py +32 -0
  260. band_client_rest-0.0.7/src/thenvoi_rest/types/message_status_response.py +42 -0
  261. band_client_rest-0.0.7/src/thenvoi_rest/types/message_status_response_status.py +5 -0
  262. band_client_rest-0.0.7/src/thenvoi_rest/types/my_agent.py +72 -0
  263. band_client_rest-0.0.7/src/thenvoi_rest/types/participant_request.py +32 -0
  264. band_client_rest-0.0.7/src/thenvoi_rest/types/participant_request_role.py +5 -0
  265. band_client_rest-0.0.7/src/thenvoi_rest/types/participant_role.py +5 -0
  266. band_client_rest-0.0.7/src/thenvoi_rest/types/peer.py +73 -0
  267. band_client_rest-0.0.7/src/thenvoi_rest/types/peer_source.py +5 -0
  268. band_client_rest-0.0.7/src/thenvoi_rest/types/peer_type.py +5 -0
  269. band_client_rest-0.0.7/src/thenvoi_rest/types/received_contact_request.py +38 -0
  270. band_client_rest-0.0.7/src/thenvoi_rest/types/received_contact_request_status.py +5 -0
  271. band_client_rest-0.0.7/src/thenvoi_rest/types/resolved_entity.py +42 -0
  272. band_client_rest-0.0.7/src/thenvoi_rest/types/resolved_entity_type.py +5 -0
  273. band_client_rest-0.0.7/src/thenvoi_rest/types/sent_contact_request.py +38 -0
  274. band_client_rest-0.0.7/src/thenvoi_rest/types/sent_contact_request_status.py +5 -0
  275. band_client_rest-0.0.7/src/thenvoi_rest/types/test_response.py +48 -0
  276. band_client_rest-0.0.7/src/thenvoi_rest/types/test_response_request_info.py +37 -0
  277. band_client_rest-0.0.7/src/thenvoi_rest/types/user_details.py +52 -0
  278. band_client_rest-0.0.7/src/thenvoi_rest/types/user_details_role.py +5 -0
  279. band_client_rest-0.0.7/src/thenvoi_rest/types/user_memory.py +97 -0
  280. band_client_rest-0.0.7/src/thenvoi_rest/types/user_memory_scope.py +5 -0
  281. band_client_rest-0.0.7/src/thenvoi_rest/types/user_memory_segment.py +5 -0
  282. band_client_rest-0.0.7/src/thenvoi_rest/types/user_memory_status.py +5 -0
  283. band_client_rest-0.0.7/src/thenvoi_rest/types/user_memory_system.py +5 -0
  284. band_client_rest-0.0.7/src/thenvoi_rest/types/user_memory_type.py +7 -0
  285. band_client_rest-0.0.7/src/thenvoi_rest/types/validation_error.py +24 -0
  286. band_client_rest-0.0.7/src/thenvoi_rest/types/validation_error_error.py +37 -0
  287. band_client_rest-0.0.7/src/thenvoi_rest/version.py +3 -0
@@ -0,0 +1,199 @@
1
+ Metadata-Version: 2.1
2
+ Name: band-client-rest
3
+ Version: 0.0.7
4
+ Summary:
5
+ Requires-Python: >=3.8,<4.0
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Operating System :: POSIX
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Dist: httpx (>=0.21.2)
22
+ Requires-Dist: pydantic (>=1.9.2)
23
+ Requires-Dist: pydantic-core (>=2.18.2)
24
+ Requires-Dist: typing_extensions (>=4.0.0)
25
+ Project-URL: Repository, https://github.com/thenvoi/fern-python-sdk
26
+ Description-Content-Type: text/markdown
27
+
28
+ # Thenvoi Python Library
29
+
30
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fthenvoi%2Ffern-python-sdk)
31
+ [![pypi](https://img.shields.io/pypi/v/thenvoi-client-rest)](https://pypi.python.org/pypi/thenvoi-client-rest)
32
+
33
+ The Thenvoi Python library provides convenient access to the Thenvoi APIs from Python.
34
+
35
+ ## Table of Contents
36
+
37
+ - [Installation](#installation)
38
+ - [Reference](#reference)
39
+ - [Usage](#usage)
40
+ - [Async Client](#async-client)
41
+ - [Exception Handling](#exception-handling)
42
+ - [Advanced](#advanced)
43
+ - [Access Raw Response Data](#access-raw-response-data)
44
+ - [Retries](#retries)
45
+ - [Timeouts](#timeouts)
46
+ - [Custom Client](#custom-client)
47
+ - [Contributing](#contributing)
48
+
49
+ ## Installation
50
+
51
+ ```sh
52
+ pip install thenvoi-client-rest
53
+ ```
54
+
55
+ ## Reference
56
+
57
+ A full reference for this library is available [here](https://github.com/thenvoi/fern-python-sdk/blob/HEAD/./reference.md).
58
+
59
+ ## Usage
60
+
61
+ Instantiate and use the client with the following:
62
+
63
+ ```python
64
+ from thenvoi_rest import RestClient
65
+
66
+ client = RestClient(
67
+ api_key="YOUR_API_KEY",
68
+ )
69
+ client.agent_api_contacts.respond_to_agent_contact_request(
70
+ action="approve",
71
+ )
72
+ ```
73
+
74
+ ## Async Client
75
+
76
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
77
+
78
+ ```python
79
+ import asyncio
80
+
81
+ from thenvoi_rest import AsyncRestClient
82
+
83
+ client = AsyncRestClient(
84
+ api_key="YOUR_API_KEY",
85
+ )
86
+
87
+
88
+ async def main() -> None:
89
+ await client.agent_api_contacts.respond_to_agent_contact_request(
90
+ action="approve",
91
+ )
92
+
93
+
94
+ asyncio.run(main())
95
+ ```
96
+
97
+ ## Exception Handling
98
+
99
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
100
+ will be thrown.
101
+
102
+ ```python
103
+ from thenvoi_rest.core.api_error import ApiError
104
+
105
+ try:
106
+ client.agent_api_contacts.respond_to_agent_contact_request(...)
107
+ except ApiError as e:
108
+ print(e.status_code)
109
+ print(e.body)
110
+ ```
111
+
112
+ ## Advanced
113
+
114
+ ### Access Raw Response Data
115
+
116
+ The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
117
+ The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
118
+
119
+ ```python
120
+ from thenvoi_rest import RestClient
121
+
122
+ client = RestClient(
123
+ ...,
124
+ )
125
+ response = client.agent_api_contacts.with_raw_response.respond_to_agent_contact_request(
126
+ ...
127
+ )
128
+ print(response.headers) # access the response headers
129
+ print(response.data) # access the underlying object
130
+ ```
131
+
132
+ ### Retries
133
+
134
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
135
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
136
+ retry limit (default: 2).
137
+
138
+ A request is deemed retryable when any of the following HTTP status codes is returned:
139
+
140
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
141
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
142
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
143
+
144
+ Use the `max_retries` request option to configure this behavior.
145
+
146
+ ```python
147
+ client.agent_api_contacts.respond_to_agent_contact_request(..., request_options={
148
+ "max_retries": 1
149
+ })
150
+ ```
151
+
152
+ ### Timeouts
153
+
154
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
155
+
156
+ ```python
157
+
158
+ from thenvoi_rest import RestClient
159
+
160
+ client = RestClient(
161
+ ...,
162
+ timeout=20.0,
163
+ )
164
+
165
+
166
+ # Override timeout for a specific method
167
+ client.agent_api_contacts.respond_to_agent_contact_request(..., request_options={
168
+ "timeout_in_seconds": 1
169
+ })
170
+ ```
171
+
172
+ ### Custom Client
173
+
174
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
175
+ and transports.
176
+
177
+ ```python
178
+ import httpx
179
+ from thenvoi_rest import RestClient
180
+
181
+ client = RestClient(
182
+ ...,
183
+ httpx_client=httpx.Client(
184
+ proxy="http://my.test.proxy.example.com",
185
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
186
+ ),
187
+ )
188
+ ```
189
+
190
+ ## Contributing
191
+
192
+ While we value open-source contributions to this SDK, this library is generated programmatically.
193
+ Additions made directly to this library would have to be moved over to our generation code,
194
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
195
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
196
+ an issue first to discuss with us!
197
+
198
+ On the other hand, contributions to the README are always very welcome!
199
+
@@ -0,0 +1,171 @@
1
+ # Thenvoi Python Library
2
+
3
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fthenvoi%2Ffern-python-sdk)
4
+ [![pypi](https://img.shields.io/pypi/v/thenvoi-client-rest)](https://pypi.python.org/pypi/thenvoi-client-rest)
5
+
6
+ The Thenvoi Python library provides convenient access to the Thenvoi APIs from Python.
7
+
8
+ ## Table of Contents
9
+
10
+ - [Installation](#installation)
11
+ - [Reference](#reference)
12
+ - [Usage](#usage)
13
+ - [Async Client](#async-client)
14
+ - [Exception Handling](#exception-handling)
15
+ - [Advanced](#advanced)
16
+ - [Access Raw Response Data](#access-raw-response-data)
17
+ - [Retries](#retries)
18
+ - [Timeouts](#timeouts)
19
+ - [Custom Client](#custom-client)
20
+ - [Contributing](#contributing)
21
+
22
+ ## Installation
23
+
24
+ ```sh
25
+ pip install thenvoi-client-rest
26
+ ```
27
+
28
+ ## Reference
29
+
30
+ A full reference for this library is available [here](https://github.com/thenvoi/fern-python-sdk/blob/HEAD/./reference.md).
31
+
32
+ ## Usage
33
+
34
+ Instantiate and use the client with the following:
35
+
36
+ ```python
37
+ from thenvoi_rest import RestClient
38
+
39
+ client = RestClient(
40
+ api_key="YOUR_API_KEY",
41
+ )
42
+ client.agent_api_contacts.respond_to_agent_contact_request(
43
+ action="approve",
44
+ )
45
+ ```
46
+
47
+ ## Async Client
48
+
49
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
50
+
51
+ ```python
52
+ import asyncio
53
+
54
+ from thenvoi_rest import AsyncRestClient
55
+
56
+ client = AsyncRestClient(
57
+ api_key="YOUR_API_KEY",
58
+ )
59
+
60
+
61
+ async def main() -> None:
62
+ await client.agent_api_contacts.respond_to_agent_contact_request(
63
+ action="approve",
64
+ )
65
+
66
+
67
+ asyncio.run(main())
68
+ ```
69
+
70
+ ## Exception Handling
71
+
72
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
73
+ will be thrown.
74
+
75
+ ```python
76
+ from thenvoi_rest.core.api_error import ApiError
77
+
78
+ try:
79
+ client.agent_api_contacts.respond_to_agent_contact_request(...)
80
+ except ApiError as e:
81
+ print(e.status_code)
82
+ print(e.body)
83
+ ```
84
+
85
+ ## Advanced
86
+
87
+ ### Access Raw Response Data
88
+
89
+ The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
90
+ The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
91
+
92
+ ```python
93
+ from thenvoi_rest import RestClient
94
+
95
+ client = RestClient(
96
+ ...,
97
+ )
98
+ response = client.agent_api_contacts.with_raw_response.respond_to_agent_contact_request(
99
+ ...
100
+ )
101
+ print(response.headers) # access the response headers
102
+ print(response.data) # access the underlying object
103
+ ```
104
+
105
+ ### Retries
106
+
107
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
108
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
109
+ retry limit (default: 2).
110
+
111
+ A request is deemed retryable when any of the following HTTP status codes is returned:
112
+
113
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
114
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
115
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
116
+
117
+ Use the `max_retries` request option to configure this behavior.
118
+
119
+ ```python
120
+ client.agent_api_contacts.respond_to_agent_contact_request(..., request_options={
121
+ "max_retries": 1
122
+ })
123
+ ```
124
+
125
+ ### Timeouts
126
+
127
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
128
+
129
+ ```python
130
+
131
+ from thenvoi_rest import RestClient
132
+
133
+ client = RestClient(
134
+ ...,
135
+ timeout=20.0,
136
+ )
137
+
138
+
139
+ # Override timeout for a specific method
140
+ client.agent_api_contacts.respond_to_agent_contact_request(..., request_options={
141
+ "timeout_in_seconds": 1
142
+ })
143
+ ```
144
+
145
+ ### Custom Client
146
+
147
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
148
+ and transports.
149
+
150
+ ```python
151
+ import httpx
152
+ from thenvoi_rest import RestClient
153
+
154
+ client = RestClient(
155
+ ...,
156
+ httpx_client=httpx.Client(
157
+ proxy="http://my.test.proxy.example.com",
158
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
159
+ ),
160
+ )
161
+ ```
162
+
163
+ ## Contributing
164
+
165
+ While we value open-source contributions to this SDK, this library is generated programmatically.
166
+ Additions made directly to this library would have to be moved over to our generation code,
167
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
168
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
169
+ an issue first to discuss with us!
170
+
171
+ On the other hand, contributions to the README are always very welcome!
@@ -0,0 +1,86 @@
1
+ [project]
2
+ name = "band-client-rest"
3
+ dynamic = ["version"]
4
+
5
+ [tool.poetry]
6
+ name = "band-client-rest"
7
+ version = "0.0.7"
8
+ description = ""
9
+ readme = "README.md"
10
+ authors = []
11
+ keywords = []
12
+
13
+ classifiers = [
14
+ "Intended Audience :: Developers",
15
+ "Programming Language :: Python",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.8",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Operating System :: OS Independent",
23
+ "Operating System :: POSIX",
24
+ "Operating System :: MacOS",
25
+ "Operating System :: POSIX :: Linux",
26
+ "Operating System :: Microsoft :: Windows",
27
+ "Topic :: Software Development :: Libraries :: Python Modules",
28
+ "Typing :: Typed"
29
+ ]
30
+ packages = [
31
+ { include = "thenvoi_rest", from = "src"}
32
+ ]
33
+
34
+ [tool.poetry.urls]
35
+ Repository = 'https://github.com/thenvoi/fern-python-sdk'
36
+
37
+ [tool.poetry.dependencies]
38
+ python = "^3.8"
39
+ httpx = ">=0.21.2"
40
+ pydantic = ">= 1.9.2"
41
+ pydantic-core = ">=2.18.2"
42
+ typing_extensions = ">= 4.0.0"
43
+
44
+ [tool.poetry.group.dev.dependencies]
45
+ mypy = "==1.13.0"
46
+ pytest = "^7.4.0"
47
+ pytest-asyncio = "^0.23.5"
48
+ pytest-xdist = "^3.6.1"
49
+ python-dateutil = "^2.9.0"
50
+ types-python-dateutil = "^2.9.0.20240316"
51
+ ruff = "==0.11.5"
52
+
53
+ [tool.pytest.ini_options]
54
+ testpaths = [ "tests" ]
55
+ asyncio_mode = "auto"
56
+
57
+ [tool.mypy]
58
+ plugins = ["pydantic.mypy"]
59
+
60
+ [tool.ruff]
61
+ line-length = 120
62
+
63
+ [tool.ruff.lint]
64
+ select = [
65
+ "E", # pycodestyle errors
66
+ "F", # pyflakes
67
+ "I", # isort
68
+ ]
69
+ ignore = [
70
+ "E402", # Module level import not at top of file
71
+ "E501", # Line too long
72
+ "E711", # Comparison to `None` should be `cond is not None`
73
+ "E712", # Avoid equality comparisons to `True`; use `if ...:` checks
74
+ "E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
75
+ "E722", # Do not use bare `except`
76
+ "E731", # Do not assign a `lambda` expression, use a `def`
77
+ "F821", # Undefined name
78
+ "F841" # Local variable ... is assigned to but never used
79
+ ]
80
+
81
+ [tool.ruff.lint.isort]
82
+ section-order = ["future", "standard-library", "third-party", "first-party"]
83
+
84
+ [build-system]
85
+ requires = ["poetry-core"]
86
+ build-backend = "poetry.core.masonry.api"