nimble_python 0.19.0__tar.gz → 0.20.0__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 (212) hide show
  1. nimble_python-0.20.0/.release-please-manifest.json +3 -0
  2. {nimble_python-0.19.0 → nimble_python-0.20.0}/CHANGELOG.md +9 -0
  3. {nimble_python-0.19.0 → nimble_python-0.20.0}/PKG-INFO +1 -1
  4. {nimble_python-0.19.0 → nimble_python-0.20.0}/api.md +57 -0
  5. {nimble_python-0.19.0 → nimble_python-0.20.0}/pyproject.toml +1 -1
  6. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_client.py +42 -5
  7. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_version.py +1 -1
  8. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/__init__.py +14 -0
  9. nimble_python-0.20.0/src/nimble_python/resources/jobs/__init__.py +33 -0
  10. nimble_python-0.20.0/src/nimble_python/resources/jobs/jobs.py +691 -0
  11. nimble_python-0.20.0/src/nimble_python/resources/jobs/runs/__init__.py +33 -0
  12. nimble_python-0.20.0/src/nimble_python/resources/jobs/runs/artifacts.py +427 -0
  13. nimble_python-0.20.0/src/nimble_python/resources/jobs/runs/runs.py +389 -0
  14. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/task_agent/task_agent.py +6 -2
  15. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/__init__.py +8 -0
  16. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/client_extract_async_params.py +1 -1
  17. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/client_extract_batch_params.py +10 -4
  18. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/client_extract_params.py +1 -1
  19. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/crawl_run_params.py +1 -1
  20. nimble_python-0.20.0/src/nimble_python/types/job_create_params.py +46 -0
  21. nimble_python-0.20.0/src/nimble_python/types/job_create_response.py +59 -0
  22. nimble_python-0.20.0/src/nimble_python/types/job_get_response.py +59 -0
  23. nimble_python-0.20.0/src/nimble_python/types/job_list_params.py +20 -0
  24. nimble_python-0.20.0/src/nimble_python/types/job_list_response.py +69 -0
  25. nimble_python-0.20.0/src/nimble_python/types/job_run_response.py +29 -0
  26. nimble_python-0.20.0/src/nimble_python/types/job_update_params.py +42 -0
  27. nimble_python-0.20.0/src/nimble_python/types/job_update_response.py +59 -0
  28. nimble_python-0.20.0/src/nimble_python/types/jobs/__init__.py +8 -0
  29. nimble_python-0.20.0/src/nimble_python/types/jobs/run_cancel_response.py +13 -0
  30. nimble_python-0.20.0/src/nimble_python/types/jobs/run_get_response.py +65 -0
  31. nimble_python-0.20.0/src/nimble_python/types/jobs/run_list_params.py +17 -0
  32. nimble_python-0.20.0/src/nimble_python/types/jobs/run_list_response.py +39 -0
  33. nimble_python-0.20.0/src/nimble_python/types/jobs/runs/__init__.py +8 -0
  34. nimble_python-0.20.0/src/nimble_python/types/jobs/runs/artifact_download_url_response.py +13 -0
  35. nimble_python-0.20.0/src/nimble_python/types/jobs/runs/artifact_get_response.py +17 -0
  36. nimble_python-0.20.0/src/nimble_python/types/jobs/runs/artifact_list_response.py +22 -0
  37. nimble_python-0.20.0/src/nimble_python/types/jobs/runs/artifact_preview_response.py +15 -0
  38. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_create_params.py +21 -3
  39. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_create_response.py +21 -3
  40. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_get_response.py +21 -3
  41. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_list_response.py +23 -3
  42. nimble_python-0.20.0/src/nimble_python/types/task_agent_run_params.py +46 -0
  43. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_update_response.py +21 -3
  44. nimble_python-0.20.0/tests/api_resources/jobs/runs/__init__.py +1 -0
  45. nimble_python-0.20.0/tests/api_resources/jobs/runs/test_artifacts.py +425 -0
  46. nimble_python-0.20.0/tests/api_resources/jobs/test_runs.py +298 -0
  47. nimble_python-0.20.0/tests/api_resources/task_agent/__init__.py +1 -0
  48. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_client.py +4 -4
  49. nimble_python-0.20.0/tests/api_resources/test_jobs.py +616 -0
  50. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_task_agent.py +72 -14
  51. nimble_python-0.19.0/.release-please-manifest.json +0 -3
  52. nimble_python-0.19.0/src/nimble_python/types/task_agent_run_params.py +0 -16
  53. {nimble_python-0.19.0 → nimble_python-0.20.0}/.gitignore +0 -0
  54. {nimble_python-0.19.0 → nimble_python-0.20.0}/CONTRIBUTING.md +0 -0
  55. {nimble_python-0.19.0 → nimble_python-0.20.0}/LICENSE +0 -0
  56. {nimble_python-0.19.0 → nimble_python-0.20.0}/README.md +0 -0
  57. {nimble_python-0.19.0 → nimble_python-0.20.0}/SECURITY.md +0 -0
  58. {nimble_python-0.19.0 → nimble_python-0.20.0}/bin/check-release-environment +0 -0
  59. {nimble_python-0.19.0 → nimble_python-0.20.0}/bin/publish-pypi +0 -0
  60. {nimble_python-0.19.0 → nimble_python-0.20.0}/examples/.keep +0 -0
  61. {nimble_python-0.19.0 → nimble_python-0.20.0}/release-please-config.json +0 -0
  62. {nimble_python-0.19.0 → nimble_python-0.20.0}/requirements-dev.lock +0 -0
  63. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/__init__.py +0 -0
  64. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_base_client.py +0 -0
  65. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_compat.py +0 -0
  66. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_constants.py +0 -0
  67. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_exceptions.py +0 -0
  68. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_files.py +0 -0
  69. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_models.py +0 -0
  70. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_qs.py +0 -0
  71. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_resource.py +0 -0
  72. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_response.py +0 -0
  73. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_streaming.py +0 -0
  74. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_types.py +0 -0
  75. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/__init__.py +0 -0
  76. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_compat.py +0 -0
  77. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_datetime_parse.py +0 -0
  78. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_json.py +0 -0
  79. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_logs.py +0 -0
  80. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_path.py +0 -0
  81. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_proxy.py +0 -0
  82. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_reflection.py +0 -0
  83. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_resources_proxy.py +0 -0
  84. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_streams.py +0 -0
  85. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_sync.py +0 -0
  86. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_transform.py +0 -0
  87. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_typing.py +0 -0
  88. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/_utils/_utils.py +0 -0
  89. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/lib/.keep +0 -0
  90. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/py.typed +0 -0
  91. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/agent.py +0 -0
  92. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/batches.py +0 -0
  93. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/crawl.py +0 -0
  94. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/domain_knowledge.py +0 -0
  95. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/media.py +0 -0
  96. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/serp.py +0 -0
  97. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/task_agent/__init__.py +0 -0
  98. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/task_agent/runs.py +0 -0
  99. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/task_agent/templates.py +0 -0
  100. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/resources/tasks.py +0 -0
  101. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_generate_params.py +0 -0
  102. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_generate_response.py +0 -0
  103. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_get_generation_response.py +0 -0
  104. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_get_response.py +0 -0
  105. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_list_params.py +0 -0
  106. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_list_response.py +0 -0
  107. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_run_async_params.py +0 -0
  108. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_run_async_response.py +0 -0
  109. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_run_batch_params.py +0 -0
  110. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_run_batch_response.py +0 -0
  111. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_run_params.py +0 -0
  112. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/agent_run_response.py +0 -0
  113. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/batch_get_response.py +0 -0
  114. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/batch_progress_response.py +0 -0
  115. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/client_map_params.py +0 -0
  116. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/client_search_params.py +0 -0
  117. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/crawl_list_params.py +0 -0
  118. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/crawl_list_response.py +0 -0
  119. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/crawl_run_response.py +0 -0
  120. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/crawl_status_response.py +0 -0
  121. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/crawl_terminate_response.py +0 -0
  122. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/domain_knowledge_get_driver_params.py +0 -0
  123. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/domain_knowledge_get_driver_response.py +0 -0
  124. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/extract_async_response.py +0 -0
  125. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/extract_batch_response.py +0 -0
  126. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/extract_response.py +0 -0
  127. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/map_response.py +0 -0
  128. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/media_run_async_params.py +0 -0
  129. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/media_run_async_response.py +0 -0
  130. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/media_run_params.py +0 -0
  131. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/media_run_response.py +0 -0
  132. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/search_response.py +0 -0
  133. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/serp_run_async_params.py +0 -0
  134. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/serp_run_async_response.py +0 -0
  135. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/serp_run_batch_params.py +0 -0
  136. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/serp_run_batch_response.py +0 -0
  137. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/serp_run_params.py +0 -0
  138. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/serp_run_response.py +0 -0
  139. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/__init__.py +0 -0
  140. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/auto_scroll_action.py +0 -0
  141. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/click_action.py +0 -0
  142. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/eval_action.py +0 -0
  143. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/fetch_action.py +0 -0
  144. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/fill_action.py +0 -0
  145. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/get_cookies_action.py +0 -0
  146. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/goto_action.py +0 -0
  147. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/press_action.py +0 -0
  148. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/screenshot_action.py +0 -0
  149. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/scroll_action.py +0 -0
  150. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/wait_action.py +0 -0
  151. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/wait_for_element_action.py +0 -0
  152. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared/wait_for_navigation_action.py +0 -0
  153. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/__init__.py +0 -0
  154. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/auto_scroll_action.py +0 -0
  155. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/click_action.py +0 -0
  156. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/eval_action.py +0 -0
  157. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/fetch_action.py +0 -0
  158. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/fill_action.py +0 -0
  159. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/get_cookies_action.py +0 -0
  160. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/goto_action.py +0 -0
  161. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/press_action.py +0 -0
  162. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/screenshot_action.py +0 -0
  163. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/scroll_action.py +0 -0
  164. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/wait_action.py +0 -0
  165. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/wait_for_element_action.py +0 -0
  166. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/shared_params/wait_for_navigation_action.py +0 -0
  167. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/__init__.py +0 -0
  168. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/run_get_response.py +0 -0
  169. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/run_get_result_response.py +0 -0
  170. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/run_list_params.py +0 -0
  171. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/run_list_response.py +0 -0
  172. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/template_get_response.py +0 -0
  173. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/template_list_params.py +0 -0
  174. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent/template_list_response.py +0 -0
  175. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_list_params.py +0 -0
  176. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_run_response.py +0 -0
  177. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_agent_update_params.py +0 -0
  178. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_get_response.py +0 -0
  179. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_list_params.py +0 -0
  180. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_list_response.py +0 -0
  181. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimble_python/types/task_results_response.py +0 -0
  182. {nimble_python-0.19.0 → nimble_python-0.20.0}/src/nimbleway/lib/.keep +0 -0
  183. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/__init__.py +0 -0
  184. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/__init__.py +0 -0
  185. {nimble_python-0.19.0/tests/api_resources/task_agent → nimble_python-0.20.0/tests/api_resources/jobs}/__init__.py +0 -0
  186. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/task_agent/test_runs.py +0 -0
  187. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/task_agent/test_templates.py +0 -0
  188. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_agent.py +0 -0
  189. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_batches.py +0 -0
  190. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_crawl.py +0 -0
  191. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_domain_knowledge.py +0 -0
  192. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_media.py +0 -0
  193. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_serp.py +0 -0
  194. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/api_resources/test_tasks.py +0 -0
  195. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/conftest.py +0 -0
  196. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/sample_file.txt +0 -0
  197. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_client.py +0 -0
  198. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_extract_files.py +0 -0
  199. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_files.py +0 -0
  200. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_models.py +0 -0
  201. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_qs.py +0 -0
  202. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_required_args.py +0 -0
  203. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_response.py +0 -0
  204. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_streaming.py +0 -0
  205. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_transform.py +0 -0
  206. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_utils/test_datetime_parse.py +0 -0
  207. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_utils/test_json.py +0 -0
  208. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_utils/test_path.py +0 -0
  209. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_utils/test_proxy.py +0 -0
  210. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/test_utils/test_typing.py +0 -0
  211. {nimble_python-0.19.0 → nimble_python-0.20.0}/tests/utils.py +0 -0
  212. {nimble_python-0.19.0 → nimble_python-0.20.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.20.0"
3
+ }
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.20.0 (2026-06-18)
4
+
5
+ Full Changelog: [v0.19.0...v0.20.0](https://github.com/Nimbleway/nimble-python/compare/v0.19.0...v0.20.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** Add jobs api ([9065317](https://github.com/Nimbleway/nimble-python/commit/90653176f426f3566d6b596ab46573dfa5d6bf23))
10
+ * **api:** api update ([0dd31cd](https://github.com/Nimbleway/nimble-python/commit/0dd31cd413a4f9803d95d087a17db47c7fd2cac1))
11
+
3
12
  ## 0.19.0 (2026-06-11)
4
13
 
5
14
  Full Changelog: [v0.18.0...v0.19.0](https://github.com/Nimbleway/nimble-python/compare/v0.18.0...v0.19.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nimble_python
3
- Version: 0.19.0
3
+ Version: 0.20.0
4
4
  Summary: The official Python library for the nimble API
5
5
  Project-URL: Homepage, https://github.com/Nimbleway/nimble-python
6
6
  Project-URL: Repository, https://github.com/Nimbleway/nimble-python
@@ -204,3 +204,60 @@ Methods:
204
204
  - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">get</a>(run_id, \*, agent_id) -> <a href="./src/nimble_python/types/task_agent/run_get_response.py">RunGetResponse</a></code>
205
205
  - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}/result">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">get_result</a>(run_id, \*, agent_id) -> <a href="./src/nimble_python/types/task_agent/run_get_result_response.py">RunGetResultResponse</a></code>
206
206
  - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}/events">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">stream_events</a>(run_id, \*, agent_id) -> object</code>
207
+
208
+ # Jobs
209
+
210
+ Types:
211
+
212
+ ```python
213
+ from nimble_python.types import (
214
+ JobCreateResponse,
215
+ JobUpdateResponse,
216
+ JobListResponse,
217
+ JobGetResponse,
218
+ JobRunResponse,
219
+ )
220
+ ```
221
+
222
+ Methods:
223
+
224
+ - <code title="post /v1/jobs">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">create</a>(\*\*<a href="src/nimble_python/types/job_create_params.py">params</a>) -> <a href="./src/nimble_python/types/job_create_response.py">JobCreateResponse</a></code>
225
+ - <code title="patch /v1/jobs/{job_id}">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">update</a>(job_id, \*\*<a href="src/nimble_python/types/job_update_params.py">params</a>) -> <a href="./src/nimble_python/types/job_update_response.py">JobUpdateResponse</a></code>
226
+ - <code title="get /v1/jobs">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">list</a>(\*\*<a href="src/nimble_python/types/job_list_params.py">params</a>) -> <a href="./src/nimble_python/types/job_list_response.py">JobListResponse</a></code>
227
+ - <code title="delete /v1/jobs/{job_id}">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">delete</a>(job_id) -> None</code>
228
+ - <code title="get /v1/jobs/{job_id}">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">get</a>(job_id) -> <a href="./src/nimble_python/types/job_get_response.py">JobGetResponse</a></code>
229
+ - <code title="post /v1/jobs/{job_id}/runs">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">run</a>(job_id) -> <a href="./src/nimble_python/types/job_run_response.py">JobRunResponse</a></code>
230
+
231
+ ## Runs
232
+
233
+ Types:
234
+
235
+ ```python
236
+ from nimble_python.types.jobs import RunListResponse, RunCancelResponse, RunGetResponse
237
+ ```
238
+
239
+ Methods:
240
+
241
+ - <code title="get /v1/jobs/{job_id}/runs">client.jobs.runs.<a href="./src/nimble_python/resources/jobs/runs/runs.py">list</a>(job_id, \*\*<a href="src/nimble_python/types/jobs/run_list_params.py">params</a>) -> <a href="./src/nimble_python/types/jobs/run_list_response.py">RunListResponse</a></code>
242
+ - <code title="post /v1/jobs/runs/{run_id}/cancel">client.jobs.runs.<a href="./src/nimble_python/resources/jobs/runs/runs.py">cancel</a>(run_id) -> <a href="./src/nimble_python/types/jobs/run_cancel_response.py">RunCancelResponse</a></code>
243
+ - <code title="get /v1/jobs/runs/{run_id}">client.jobs.runs.<a href="./src/nimble_python/resources/jobs/runs/runs.py">get</a>(run_id) -> <a href="./src/nimble_python/types/jobs/run_get_response.py">RunGetResponse</a></code>
244
+
245
+ ### Artifacts
246
+
247
+ Types:
248
+
249
+ ```python
250
+ from nimble_python.types.jobs.runs import (
251
+ ArtifactListResponse,
252
+ ArtifactDownloadURLResponse,
253
+ ArtifactGetResponse,
254
+ ArtifactPreviewResponse,
255
+ )
256
+ ```
257
+
258
+ Methods:
259
+
260
+ - <code title="get /v1/jobs/runs/{run_id}/artifacts">client.jobs.runs.artifacts.<a href="./src/nimble_python/resources/jobs/runs/artifacts.py">list</a>(run_id) -> <a href="./src/nimble_python/types/jobs/runs/artifact_list_response.py">ArtifactListResponse</a></code>
261
+ - <code title="get /v1/jobs/runs/{run_id}/artifacts/{artifact_id}/download-url">client.jobs.runs.artifacts.<a href="./src/nimble_python/resources/jobs/runs/artifacts.py">download_url</a>(artifact_id, \*, run_id) -> <a href="./src/nimble_python/types/jobs/runs/artifact_download_url_response.py">ArtifactDownloadURLResponse</a></code>
262
+ - <code title="get /v1/jobs/runs/{run_id}/artifacts/{artifact_id}">client.jobs.runs.artifacts.<a href="./src/nimble_python/resources/jobs/runs/artifacts.py">get</a>(artifact_id, \*, run_id) -> <a href="./src/nimble_python/types/jobs/runs/artifact_get_response.py">ArtifactGetResponse</a></code>
263
+ - <code title="get /v1/jobs/runs/{run_id}/artifacts/{artifact_id}/preview">client.jobs.runs.artifacts.<a href="./src/nimble_python/resources/jobs/runs/artifacts.py">preview</a>(artifact_id, \*, run_id) -> <a href="./src/nimble_python/types/jobs/runs/artifact_preview_response.py">ArtifactPreviewResponse</a></code>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nimble_python"
3
- version = "0.19.0"
3
+ version = "0.20.0"
4
4
  description = "The official Python library for the nimble API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -61,13 +61,14 @@ from .types.extract_async_response import ExtractAsyncResponse
61
61
  from .types.extract_batch_response import ExtractBatchResponse
62
62
 
63
63
  if TYPE_CHECKING:
64
- from .resources import serp, agent, crawl, media, tasks, batches, task_agent, domain_knowledge
64
+ from .resources import jobs, serp, agent, crawl, media, tasks, batches, task_agent, domain_knowledge
65
65
  from .resources.serp import SerpResource, AsyncSerpResource
66
66
  from .resources.agent import AgentResource, AsyncAgentResource
67
67
  from .resources.crawl import CrawlResource, AsyncCrawlResource
68
68
  from .resources.media import MediaResource, AsyncMediaResource
69
69
  from .resources.tasks import TasksResource, AsyncTasksResource
70
70
  from .resources.batches import BatchesResource, AsyncBatchesResource
71
+ from .resources.jobs.jobs import JobsResource, AsyncJobsResource
71
72
  from .resources.domain_knowledge import DomainKnowledgeResource, AsyncDomainKnowledgeResource
72
73
  from .resources.task_agent.task_agent import TaskAgentResource, AsyncTaskAgentResource
73
74
 
@@ -190,6 +191,12 @@ class Nimble(SyncAPIClient):
190
191
 
191
192
  return TaskAgentResource(self)
192
193
 
194
+ @cached_property
195
+ def jobs(self) -> JobsResource:
196
+ from .resources.jobs import JobsResource
197
+
198
+ return JobsResource(self)
199
+
193
200
  @cached_property
194
201
  def with_raw_response(self) -> NimbleWithRawResponse:
195
202
  return NimbleWithRawResponse(self)
@@ -1100,7 +1107,7 @@ class Nimble(SyncAPIClient):
1100
1107
  "random", "no-referer", "same-origin", "google", "bing", "facebook", "twitter", "instagram"
1101
1108
  ]
1102
1109
  | Omit = omit,
1103
- render: bool | Omit = omit,
1110
+ render: Union[bool, Literal["auto"]] | Omit = omit,
1104
1111
  request_timeout: float | Omit = omit,
1105
1112
  session: client_extract_params.Session | Omit = omit,
1106
1113
  skill: Union[str, SequenceNotStr[str]] | Omit = omit,
@@ -2101,7 +2108,7 @@ class Nimble(SyncAPIClient):
2101
2108
  "random", "no-referer", "same-origin", "google", "bing", "facebook", "twitter", "instagram"
2102
2109
  ]
2103
2110
  | Omit = omit,
2104
- render: bool | Omit = omit,
2111
+ render: Union[bool, Literal["auto"]] | Omit = omit,
2105
2112
  request_timeout: float | Omit = omit,
2106
2113
  session: client_extract_async_params.Session | Omit = omit,
2107
2114
  skill: Union[str, SequenceNotStr[str]] | Omit = omit,
@@ -3458,6 +3465,12 @@ class AsyncNimble(AsyncAPIClient):
3458
3465
 
3459
3466
  return AsyncTaskAgentResource(self)
3460
3467
 
3468
+ @cached_property
3469
+ def jobs(self) -> AsyncJobsResource:
3470
+ from .resources.jobs import AsyncJobsResource
3471
+
3472
+ return AsyncJobsResource(self)
3473
+
3461
3474
  @cached_property
3462
3475
  def with_raw_response(self) -> AsyncNimbleWithRawResponse:
3463
3476
  return AsyncNimbleWithRawResponse(self)
@@ -4368,7 +4381,7 @@ class AsyncNimble(AsyncAPIClient):
4368
4381
  "random", "no-referer", "same-origin", "google", "bing", "facebook", "twitter", "instagram"
4369
4382
  ]
4370
4383
  | Omit = omit,
4371
- render: bool | Omit = omit,
4384
+ render: Union[bool, Literal["auto"]] | Omit = omit,
4372
4385
  request_timeout: float | Omit = omit,
4373
4386
  session: client_extract_params.Session | Omit = omit,
4374
4387
  skill: Union[str, SequenceNotStr[str]] | Omit = omit,
@@ -5369,7 +5382,7 @@ class AsyncNimble(AsyncAPIClient):
5369
5382
  "random", "no-referer", "same-origin", "google", "bing", "facebook", "twitter", "instagram"
5370
5383
  ]
5371
5384
  | Omit = omit,
5372
- render: bool | Omit = omit,
5385
+ render: Union[bool, Literal["auto"]] | Omit = omit,
5373
5386
  request_timeout: float | Omit = omit,
5374
5387
  session: client_extract_async_params.Session | Omit = omit,
5375
5388
  skill: Union[str, SequenceNotStr[str]] | Omit = omit,
@@ -6680,6 +6693,12 @@ class NimbleWithRawResponse:
6680
6693
 
6681
6694
  return TaskAgentResourceWithRawResponse(self._client.task_agent)
6682
6695
 
6696
+ @cached_property
6697
+ def jobs(self) -> jobs.JobsResourceWithRawResponse:
6698
+ from .resources.jobs import JobsResourceWithRawResponse
6699
+
6700
+ return JobsResourceWithRawResponse(self._client.jobs)
6701
+
6683
6702
 
6684
6703
  class AsyncNimbleWithRawResponse:
6685
6704
  _client: AsyncNimble
@@ -6751,6 +6770,12 @@ class AsyncNimbleWithRawResponse:
6751
6770
 
6752
6771
  return AsyncTaskAgentResourceWithRawResponse(self._client.task_agent)
6753
6772
 
6773
+ @cached_property
6774
+ def jobs(self) -> jobs.AsyncJobsResourceWithRawResponse:
6775
+ from .resources.jobs import AsyncJobsResourceWithRawResponse
6776
+
6777
+ return AsyncJobsResourceWithRawResponse(self._client.jobs)
6778
+
6754
6779
 
6755
6780
  class NimbleWithStreamedResponse:
6756
6781
  _client: Nimble
@@ -6822,6 +6847,12 @@ class NimbleWithStreamedResponse:
6822
6847
 
6823
6848
  return TaskAgentResourceWithStreamingResponse(self._client.task_agent)
6824
6849
 
6850
+ @cached_property
6851
+ def jobs(self) -> jobs.JobsResourceWithStreamingResponse:
6852
+ from .resources.jobs import JobsResourceWithStreamingResponse
6853
+
6854
+ return JobsResourceWithStreamingResponse(self._client.jobs)
6855
+
6825
6856
 
6826
6857
  class AsyncNimbleWithStreamedResponse:
6827
6858
  _client: AsyncNimble
@@ -6893,6 +6924,12 @@ class AsyncNimbleWithStreamedResponse:
6893
6924
 
6894
6925
  return AsyncTaskAgentResourceWithStreamingResponse(self._client.task_agent)
6895
6926
 
6927
+ @cached_property
6928
+ def jobs(self) -> jobs.AsyncJobsResourceWithStreamingResponse:
6929
+ from .resources.jobs import AsyncJobsResourceWithStreamingResponse
6930
+
6931
+ return AsyncJobsResourceWithStreamingResponse(self._client.jobs)
6932
+
6896
6933
 
6897
6934
  Client = Nimble
6898
6935
 
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "nimble_python"
4
- __version__ = "0.19.0" # x-release-please-version
4
+ __version__ = "0.20.0" # x-release-please-version
@@ -1,5 +1,13 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
+ from .jobs import (
4
+ JobsResource,
5
+ AsyncJobsResource,
6
+ JobsResourceWithRawResponse,
7
+ AsyncJobsResourceWithRawResponse,
8
+ JobsResourceWithStreamingResponse,
9
+ AsyncJobsResourceWithStreamingResponse,
10
+ )
3
11
  from .serp import (
4
12
  SerpResource,
5
13
  AsyncSerpResource,
@@ -114,4 +122,10 @@ __all__ = [
114
122
  "AsyncTaskAgentResourceWithRawResponse",
115
123
  "TaskAgentResourceWithStreamingResponse",
116
124
  "AsyncTaskAgentResourceWithStreamingResponse",
125
+ "JobsResource",
126
+ "AsyncJobsResource",
127
+ "JobsResourceWithRawResponse",
128
+ "AsyncJobsResourceWithRawResponse",
129
+ "JobsResourceWithStreamingResponse",
130
+ "AsyncJobsResourceWithStreamingResponse",
117
131
  ]
@@ -0,0 +1,33 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .jobs import (
4
+ JobsResource,
5
+ AsyncJobsResource,
6
+ JobsResourceWithRawResponse,
7
+ AsyncJobsResourceWithRawResponse,
8
+ JobsResourceWithStreamingResponse,
9
+ AsyncJobsResourceWithStreamingResponse,
10
+ )
11
+ from .runs import (
12
+ RunsResource,
13
+ AsyncRunsResource,
14
+ RunsResourceWithRawResponse,
15
+ AsyncRunsResourceWithRawResponse,
16
+ RunsResourceWithStreamingResponse,
17
+ AsyncRunsResourceWithStreamingResponse,
18
+ )
19
+
20
+ __all__ = [
21
+ "RunsResource",
22
+ "AsyncRunsResource",
23
+ "RunsResourceWithRawResponse",
24
+ "AsyncRunsResourceWithRawResponse",
25
+ "RunsResourceWithStreamingResponse",
26
+ "AsyncRunsResourceWithStreamingResponse",
27
+ "JobsResource",
28
+ "AsyncJobsResource",
29
+ "JobsResourceWithRawResponse",
30
+ "AsyncJobsResourceWithRawResponse",
31
+ "JobsResourceWithStreamingResponse",
32
+ "AsyncJobsResourceWithStreamingResponse",
33
+ ]