nimble_python 0.23.0__tar.gz → 1.0.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 (250) hide show
  1. nimble_python-1.0.0/.release-please-manifest.json +3 -0
  2. {nimble_python-0.23.0 → nimble_python-1.0.0}/CHANGELOG.md +25 -0
  3. {nimble_python-0.23.0 → nimble_python-1.0.0}/PKG-INFO +12 -12
  4. {nimble_python-0.23.0 → nimble_python-1.0.0}/README.md +11 -11
  5. nimble_python-1.0.0/api.md +312 -0
  6. {nimble_python-0.23.0 → nimble_python-1.0.0}/pyproject.toml +1 -1
  7. nimble_python-1.0.0/src/nimble_python/_client.py +2788 -0
  8. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_version.py +1 -1
  9. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/__init__.py +28 -28
  10. {nimble_python-0.23.0/src/nimble_python/resources/task_agent → nimble_python-1.0.0/src/nimble_python/resources/agents}/__init__.py +14 -14
  11. nimble_python-0.23.0/src/nimble_python/resources/task_agent/task_agent.py → nimble_python-1.0.0/src/nimble_python/resources/agents/agents.py +180 -261
  12. {nimble_python-0.23.0/src/nimble_python/resources/task_agent → nimble_python-1.0.0/src/nimble_python/resources/agents}/runs.py +211 -155
  13. {nimble_python-0.23.0/src/nimble_python/resources/task_agent → nimble_python-1.0.0/src/nimble_python/resources/agents}/templates.py +17 -28
  14. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/batches.py +6 -6
  15. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/crawl.py +8 -8
  16. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/domain_knowledge.py +2 -2
  17. nimble_python-1.0.0/src/nimble_python/resources/extract/__init__.py +33 -0
  18. nimble_python-0.23.0/src/nimble_python/_client.py → nimble_python-1.0.0/src/nimble_python/resources/extract/extract.py +441 -3122
  19. nimble_python-1.0.0/src/nimble_python/resources/extract/templates/__init__.py +47 -0
  20. nimble_python-1.0.0/src/nimble_python/resources/extract/templates/generations.py +409 -0
  21. nimble_python-0.23.0/src/nimble_python/resources/agent.py → nimble_python-1.0.0/src/nimble_python/resources/extract/templates/templates.py +402 -477
  22. nimble_python-1.0.0/src/nimble_python/resources/extract/templates/versions.py +294 -0
  23. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/fast_serp.py +2 -2
  24. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/jobs/jobs.py +34 -129
  25. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/jobs/runs/artifacts.py +22 -34
  26. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/jobs/runs/runs.py +99 -30
  27. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/media.py +4 -4
  28. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/serp.py +6 -6
  29. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/tasks.py +6 -6
  30. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/__init__.py +8 -23
  31. nimble_python-0.23.0/src/nimble_python/types/task_agent_create_params.py → nimble_python-1.0.0/src/nimble_python/types/agent_create_params.py +25 -7
  32. nimble_python-1.0.0/src/nimble_python/types/agent_create_response.py +122 -0
  33. nimble_python-1.0.0/src/nimble_python/types/agent_get_response.py +122 -0
  34. nimble_python-1.0.0/src/nimble_python/types/agent_list_params.py +16 -0
  35. nimble_python-1.0.0/src/nimble_python/types/agent_list_response.py +144 -0
  36. nimble_python-0.23.0/src/nimble_python/types/task_agent_update_params.py → nimble_python-1.0.0/src/nimble_python/types/agent_update_params.py +2 -2
  37. nimble_python-1.0.0/src/nimble_python/types/agent_update_response.py +122 -0
  38. {nimble_python-0.23.0/src/nimble_python/types/task_agent → nimble_python-1.0.0/src/nimble_python/types/agents}/__init__.py +3 -1
  39. nimble_python-1.0.0/src/nimble_python/types/agents/run_create_params.py +74 -0
  40. nimble_python-1.0.0/src/nimble_python/types/agents/run_create_response.py +54 -0
  41. {nimble_python-0.23.0/src/nimble_python/types/task_agent → nimble_python-1.0.0/src/nimble_python/types/agents}/run_get_response.py +10 -18
  42. {nimble_python-0.23.0/src/nimble_python/types/task_agent → nimble_python-1.0.0/src/nimble_python/types/agents}/run_list_params.py +0 -5
  43. {nimble_python-0.23.0/src/nimble_python/types/task_agent → nimble_python-1.0.0/src/nimble_python/types/agents}/run_list_response.py +17 -23
  44. nimble_python-0.23.0/src/nimble_python/types/task_agent/run_get_result_response.py → nimble_python-1.0.0/src/nimble_python/types/agents/run_result_response.py +133 -106
  45. nimble_python-1.0.0/src/nimble_python/types/agents/template_get_response.py +89 -0
  46. nimble_python-1.0.0/src/nimble_python/types/agents/template_list_params.py +13 -0
  47. nimble_python-1.0.0/src/nimble_python/types/agents/template_list_response.py +103 -0
  48. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/client_search_params.py +1 -4
  49. nimble_python-1.0.0/src/nimble_python/types/extract/__init__.py +15 -0
  50. nimble_python-0.23.0/src/nimble_python/types/agent_run_async_params.py → nimble_python-1.0.0/src/nimble_python/types/extract/template_async_params.py +4 -4
  51. nimble_python-0.23.0/src/nimble_python/types/agent_run_async_response.py → nimble_python-1.0.0/src/nimble_python/types/extract/template_async_response.py +3 -3
  52. nimble_python-0.23.0/src/nimble_python/types/agent_run_batch_params.py → nimble_python-1.0.0/src/nimble_python/types/extract/template_batch_params.py +3 -3
  53. nimble_python-0.23.0/src/nimble_python/types/agent_run_batch_response.py → nimble_python-1.0.0/src/nimble_python/types/extract/template_batch_response.py +3 -3
  54. nimble_python-1.0.0/src/nimble_python/types/extract/template_get_response.py +89 -0
  55. nimble_python-1.0.0/src/nimble_python/types/extract/template_list_params.py +13 -0
  56. nimble_python-1.0.0/src/nimble_python/types/extract/template_list_response.py +109 -0
  57. nimble_python-0.23.0/src/nimble_python/types/agent_run_params.py → nimble_python-1.0.0/src/nimble_python/types/extract/template_run_params.py +4 -4
  58. nimble_python-0.23.0/src/nimble_python/types/agent_run_response.py → nimble_python-1.0.0/src/nimble_python/types/extract/template_run_response.py +3 -3
  59. nimble_python-1.0.0/src/nimble_python/types/extract/template_update_params.py +32 -0
  60. nimble_python-1.0.0/src/nimble_python/types/extract/template_update_response.py +89 -0
  61. nimble_python-1.0.0/src/nimble_python/types/extract/templates/__init__.py +10 -0
  62. nimble_python-1.0.0/src/nimble_python/types/extract/templates/generation_create_params.py +61 -0
  63. nimble_python-1.0.0/src/nimble_python/types/extract/templates/generation_create_response.py +104 -0
  64. nimble_python-1.0.0/src/nimble_python/types/extract/templates/generation_get_response.py +104 -0
  65. nimble_python-1.0.0/src/nimble_python/types/extract/templates/version_get_response.py +67 -0
  66. nimble_python-1.0.0/src/nimble_python/types/extract/templates/version_list_params.py +13 -0
  67. nimble_python-1.0.0/src/nimble_python/types/extract/templates/version_list_response.py +81 -0
  68. nimble_python-0.23.0/src/nimble_python/types/client_extract_async_params.py → nimble_python-1.0.0/src/nimble_python/types/extract_async_params.py +2 -2
  69. nimble_python-0.23.0/src/nimble_python/types/client_extract_batch_params.py → nimble_python-1.0.0/src/nimble_python/types/extract_batch_params.py +2 -2
  70. nimble_python-0.23.0/src/nimble_python/types/client_extract_params.py → nimble_python-1.0.0/src/nimble_python/types/extract_run_params.py +2 -2
  71. nimble_python-0.23.0/src/nimble_python/types/extract_response.py → nimble_python-1.0.0/src/nimble_python/types/extract_run_response.py +2 -2
  72. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_create_params.py +2 -2
  73. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_create_response.py +3 -3
  74. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_get_response.py +3 -3
  75. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_list_params.py +2 -9
  76. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_list_response.py +9 -11
  77. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_update_response.py +3 -3
  78. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/__init__.py +1 -0
  79. nimble_python-0.23.0/src/nimble_python/types/job_run_response.py → nimble_python-1.0.0/src/nimble_python/types/jobs/run_create_response.py +3 -3
  80. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/run_get_response.py +3 -3
  81. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/run_list_params.py +2 -6
  82. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/run_list_response.py +6 -8
  83. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/runs/artifact_get_response.py +1 -7
  84. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/runs/artifact_list_response.py +1 -7
  85. {nimble_python-0.23.0/tests/api_resources/task_agent → nimble_python-1.0.0/tests/api_resources/agents}/test_runs.py +190 -137
  86. {nimble_python-0.23.0/tests/api_resources/task_agent → nimble_python-1.0.0/tests/api_resources/agents}/test_templates.py +19 -23
  87. nimble_python-1.0.0/tests/api_resources/extract/templates/test_generations.py +293 -0
  88. nimble_python-1.0.0/tests/api_resources/extract/templates/test_versions.py +232 -0
  89. nimble_python-1.0.0/tests/api_resources/extract/test_templates.py +721 -0
  90. nimble_python-1.0.0/tests/api_resources/jobs/__init__.py +1 -0
  91. nimble_python-1.0.0/tests/api_resources/jobs/runs/__init__.py +1 -0
  92. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/jobs/runs/test_artifacts.py +24 -60
  93. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/jobs/test_runs.py +94 -7
  94. nimble_python-0.23.0/tests/api_resources/test_task_agent.py → nimble_python-1.0.0/tests/api_resources/test_agents.py +110 -271
  95. nimble_python-1.0.0/tests/api_resources/test_client.py +232 -0
  96. nimble_python-0.23.0/tests/api_resources/test_client.py → nimble_python-1.0.0/tests/api_resources/test_extract.py +195 -407
  97. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_jobs.py +12 -101
  98. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_client.py +24 -20
  99. nimble_python-0.23.0/.release-please-manifest.json +0 -3
  100. nimble_python-0.23.0/api.md +0 -275
  101. nimble_python-0.23.0/src/nimble_python/types/agent_generate_params.py +0 -46
  102. nimble_python-0.23.0/src/nimble_python/types/agent_generate_response.py +0 -72
  103. nimble_python-0.23.0/src/nimble_python/types/agent_get_generation_response.py +0 -72
  104. nimble_python-0.23.0/src/nimble_python/types/agent_get_response.py +0 -57
  105. nimble_python-0.23.0/src/nimble_python/types/agent_list_params.py +0 -25
  106. nimble_python-0.23.0/src/nimble_python/types/agent_list_response.py +0 -29
  107. nimble_python-0.23.0/src/nimble_python/types/task_agent/template_get_response.py +0 -66
  108. nimble_python-0.23.0/src/nimble_python/types/task_agent/template_list_params.py +0 -19
  109. nimble_python-0.23.0/src/nimble_python/types/task_agent/template_list_response.py +0 -75
  110. nimble_python-0.23.0/src/nimble_python/types/task_agent_create_response.py +0 -95
  111. nimble_python-0.23.0/src/nimble_python/types/task_agent_get_response.py +0 -95
  112. nimble_python-0.23.0/src/nimble_python/types/task_agent_list_params.py +0 -21
  113. nimble_python-0.23.0/src/nimble_python/types/task_agent_list_response.py +0 -106
  114. nimble_python-0.23.0/src/nimble_python/types/task_agent_run_params.py +0 -54
  115. nimble_python-0.23.0/src/nimble_python/types/task_agent_run_response.py +0 -62
  116. nimble_python-0.23.0/src/nimble_python/types/task_agent_update_response.py +0 -95
  117. nimble_python-0.23.0/tests/api_resources/test_agent.py +0 -778
  118. {nimble_python-0.23.0 → nimble_python-1.0.0}/.gitignore +0 -0
  119. {nimble_python-0.23.0 → nimble_python-1.0.0}/CONTRIBUTING.md +0 -0
  120. {nimble_python-0.23.0 → nimble_python-1.0.0}/LICENSE +0 -0
  121. {nimble_python-0.23.0 → nimble_python-1.0.0}/SECURITY.md +0 -0
  122. {nimble_python-0.23.0 → nimble_python-1.0.0}/bin/check-release-environment +0 -0
  123. {nimble_python-0.23.0 → nimble_python-1.0.0}/bin/publish-pypi +0 -0
  124. {nimble_python-0.23.0 → nimble_python-1.0.0}/examples/.keep +0 -0
  125. {nimble_python-0.23.0 → nimble_python-1.0.0}/release-please-config.json +0 -0
  126. {nimble_python-0.23.0 → nimble_python-1.0.0}/requirements-dev.lock +0 -0
  127. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/__init__.py +0 -0
  128. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_base_client.py +0 -0
  129. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_compat.py +0 -0
  130. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_constants.py +0 -0
  131. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_exceptions.py +0 -0
  132. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_files.py +0 -0
  133. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_models.py +0 -0
  134. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_qs.py +0 -0
  135. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_resource.py +0 -0
  136. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_response.py +0 -0
  137. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_streaming.py +0 -0
  138. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_types.py +0 -0
  139. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/__init__.py +0 -0
  140. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_compat.py +0 -0
  141. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_datetime_parse.py +0 -0
  142. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_json.py +0 -0
  143. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_logs.py +0 -0
  144. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_path.py +0 -0
  145. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_proxy.py +0 -0
  146. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_reflection.py +0 -0
  147. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_resources_proxy.py +0 -0
  148. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_streams.py +0 -0
  149. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_sync.py +0 -0
  150. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_transform.py +0 -0
  151. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_typing.py +0 -0
  152. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/_utils/_utils.py +0 -0
  153. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/lib/.keep +0 -0
  154. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/py.typed +0 -0
  155. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/jobs/__init__.py +0 -0
  156. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/resources/jobs/runs/__init__.py +0 -0
  157. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/batch_get_response.py +0 -0
  158. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/batch_progress_response.py +0 -0
  159. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/client_map_params.py +0 -0
  160. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/crawl_list_params.py +0 -0
  161. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/crawl_list_response.py +0 -0
  162. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/crawl_run_params.py +0 -0
  163. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/crawl_run_response.py +0 -0
  164. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/crawl_status_response.py +0 -0
  165. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/crawl_terminate_response.py +0 -0
  166. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/domain_knowledge_get_driver_params.py +0 -0
  167. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/domain_knowledge_get_driver_response.py +0 -0
  168. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/extract_async_response.py +0 -0
  169. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/extract_batch_response.py +0 -0
  170. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/fast_serp_run_params.py +0 -0
  171. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/fast_serp_run_response.py +0 -0
  172. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/job_update_params.py +0 -0
  173. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/run_cancel_response.py +0 -0
  174. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/runs/__init__.py +0 -0
  175. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/runs/artifact_download_url_response.py +0 -0
  176. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/jobs/runs/artifact_preview_response.py +0 -0
  177. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/map_response.py +0 -0
  178. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/media_run_async_params.py +0 -0
  179. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/media_run_async_response.py +0 -0
  180. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/media_run_params.py +0 -0
  181. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/media_run_response.py +0 -0
  182. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/search_response.py +0 -0
  183. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/serp_run_async_params.py +0 -0
  184. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/serp_run_async_response.py +0 -0
  185. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/serp_run_batch_params.py +0 -0
  186. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/serp_run_batch_response.py +0 -0
  187. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/serp_run_params.py +0 -0
  188. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/serp_run_response.py +0 -0
  189. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/__init__.py +0 -0
  190. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/auto_scroll_action.py +0 -0
  191. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/click_action.py +0 -0
  192. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/eval_action.py +0 -0
  193. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/fetch_action.py +0 -0
  194. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/fill_action.py +0 -0
  195. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/get_cookies_action.py +0 -0
  196. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/goto_action.py +0 -0
  197. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/press_action.py +0 -0
  198. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/screenshot_action.py +0 -0
  199. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/scroll_action.py +0 -0
  200. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/wait_action.py +0 -0
  201. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/wait_for_element_action.py +0 -0
  202. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared/wait_for_navigation_action.py +0 -0
  203. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/__init__.py +0 -0
  204. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/auto_scroll_action.py +0 -0
  205. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/click_action.py +0 -0
  206. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/eval_action.py +0 -0
  207. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/fetch_action.py +0 -0
  208. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/fill_action.py +0 -0
  209. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/get_cookies_action.py +0 -0
  210. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/goto_action.py +0 -0
  211. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/press_action.py +0 -0
  212. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/screenshot_action.py +0 -0
  213. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/scroll_action.py +0 -0
  214. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/wait_action.py +0 -0
  215. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/wait_for_element_action.py +0 -0
  216. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/shared_params/wait_for_navigation_action.py +0 -0
  217. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/task_get_response.py +0 -0
  218. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/task_list_params.py +0 -0
  219. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/task_list_response.py +0 -0
  220. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimble_python/types/task_results_response.py +0 -0
  221. {nimble_python-0.23.0 → nimble_python-1.0.0}/src/nimbleway/lib/.keep +0 -0
  222. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/__init__.py +0 -0
  223. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/__init__.py +0 -0
  224. {nimble_python-0.23.0/tests/api_resources/jobs → nimble_python-1.0.0/tests/api_resources/agents}/__init__.py +0 -0
  225. {nimble_python-0.23.0/tests/api_resources/jobs/runs → nimble_python-1.0.0/tests/api_resources/extract}/__init__.py +0 -0
  226. {nimble_python-0.23.0/tests/api_resources/task_agent → nimble_python-1.0.0/tests/api_resources/extract/templates}/__init__.py +0 -0
  227. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_batches.py +0 -0
  228. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_crawl.py +0 -0
  229. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_domain_knowledge.py +0 -0
  230. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_fast_serp.py +0 -0
  231. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_media.py +0 -0
  232. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_serp.py +0 -0
  233. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/api_resources/test_tasks.py +0 -0
  234. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/conftest.py +0 -0
  235. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/sample_file.txt +0 -0
  236. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_extract_files.py +0 -0
  237. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_files.py +0 -0
  238. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_models.py +0 -0
  239. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_qs.py +0 -0
  240. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_required_args.py +0 -0
  241. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_response.py +0 -0
  242. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_streaming.py +0 -0
  243. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_transform.py +0 -0
  244. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_utils/test_datetime_parse.py +0 -0
  245. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_utils/test_json.py +0 -0
  246. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_utils/test_path.py +0 -0
  247. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_utils/test_proxy.py +0 -0
  248. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/test_utils/test_typing.py +0 -0
  249. {nimble_python-0.23.0 → nimble_python-1.0.0}/tests/utils.py +0 -0
  250. {nimble_python-0.23.0 → nimble_python-1.0.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.0.0"
3
+ }
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0 (2026-07-20)
4
+
5
+ Full Changelog: [v0.24.0...v1.0.0](https://github.com/Nimbleway/nimble-python/compare/v0.24.0...v1.0.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([1f846bf](https://github.com/Nimbleway/nimble-python/commit/1f846bff007afa2bd17e3dbe720e858dde41a062))
10
+ * **api:** Api v2 ([54c125b](https://github.com/Nimbleway/nimble-python/commit/54c125b46e2eaa6e64aa5267f3e3fef7853b3085))
11
+
12
+ ## 0.24.0 (2026-07-19)
13
+
14
+ Full Changelog: [v0.23.0...v0.24.0](https://github.com/Nimbleway/nimble-python/compare/v0.23.0...v0.24.0)
15
+
16
+ ### Features
17
+
18
+ * **api:** api update ([27121de](https://github.com/Nimbleway/nimble-python/commit/27121de406e5be1d76975780b8689d48aecebbf5))
19
+ * **api:** api update ([f1585c5](https://github.com/Nimbleway/nimble-python/commit/f1585c5fae73225539e26a86d33d6ee5c4b8ab5d))
20
+ * **api:** api update ([145d461](https://github.com/Nimbleway/nimble-python/commit/145d46130aa4bf0dae2526b5173c76ef3cd9e832))
21
+ * **stlc:** configurable CI runner and private-production-repo support in workflow templates ([1ba64bc](https://github.com/Nimbleway/nimble-python/commit/1ba64bcfba91ef0dcc170122382e00af7b3f1d8d))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * **internal:** resolve build failures ([be103a1](https://github.com/Nimbleway/nimble-python/commit/be103a12056631ed49ad660acdd68aa24025e87c))
27
+
3
28
  ## 0.23.0 (2026-07-13)
4
29
 
5
30
  Full Changelog: [v0.22.0...v0.23.0](https://github.com/Nimbleway/nimble-python/compare/v0.22.0...v0.23.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nimble_python
3
- Version: 0.23.0
3
+ Version: 1.0.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
@@ -76,7 +76,7 @@ client = Nimble(
76
76
  api_key=os.environ.get("NIMBLE_API_KEY"), # This is the default and can be omitted
77
77
  )
78
78
 
79
- response = client.extract(
79
+ response = client.extract.run(
80
80
  url="https://exapmle.com",
81
81
  )
82
82
  print(response.task_id)
@@ -102,7 +102,7 @@ client = AsyncNimble(
102
102
 
103
103
 
104
104
  async def main() -> None:
105
- response = await client.extract(
105
+ response = await client.extract.run(
106
106
  url="https://exapmle.com",
107
107
  )
108
108
  print(response.task_id)
@@ -138,7 +138,7 @@ async def main() -> None:
138
138
  api_key=os.environ.get("NIMBLE_API_KEY"), # This is the default and can be omitted
139
139
  http_client=DefaultAioHttpClient(),
140
140
  ) as client:
141
- response = await client.extract(
141
+ response = await client.extract.run(
142
142
  url="https://exapmle.com",
143
143
  )
144
144
  print(response.task_id)
@@ -165,7 +165,7 @@ from nimble_python import Nimble
165
165
 
166
166
  client = Nimble()
167
167
 
168
- response = client.extract(
168
+ response = client.extract.run(
169
169
  url="url",
170
170
  session={},
171
171
  )
@@ -188,7 +188,7 @@ from nimble_python import Nimble
188
188
  client = Nimble()
189
189
 
190
190
  try:
191
- client.extract(
191
+ client.extract.run(
192
192
  url="https://exapmle.com",
193
193
  )
194
194
  except nimble_python.APIConnectionError as e:
@@ -233,7 +233,7 @@ client = Nimble(
233
233
  )
234
234
 
235
235
  # Or, configure per-request:
236
- client.with_options(max_retries=5).extract(
236
+ client.with_options(max_retries=5).extract.run(
237
237
  url="https://exapmle.com",
238
238
  )
239
239
  ```
@@ -258,7 +258,7 @@ client = Nimble(
258
258
  )
259
259
 
260
260
  # Override per-request:
261
- client.with_options(timeout=5.0).extract(
261
+ client.with_options(timeout=5.0).extract.run(
262
262
  url="https://exapmle.com",
263
263
  )
264
264
  ```
@@ -301,13 +301,13 @@ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to
301
301
  from nimble_python import Nimble
302
302
 
303
303
  client = Nimble()
304
- response = client.with_raw_response.extract(
304
+ response = client.extract.with_raw_response.run(
305
305
  url="https://exapmle.com",
306
306
  )
307
307
  print(response.headers.get('X-My-Header'))
308
308
 
309
- client = response.parse() # get the object that `extract()` would have returned
310
- print(client.task_id)
309
+ extract = response.parse() # get the object that `extract.run()` would have returned
310
+ print(extract.task_id)
311
311
  ```
312
312
 
313
313
  These methods return an [`APIResponse`](https://github.com/Nimbleway/nimble-python/tree/main/src/nimble_python/_response.py) object.
@@ -321,7 +321,7 @@ The above interface eagerly reads the full response body when you make the reque
321
321
  To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
322
322
 
323
323
  ```python
324
- with client.with_streaming_response.extract(
324
+ with client.extract.with_streaming_response.run(
325
325
  url="https://exapmle.com",
326
326
  ) as response:
327
327
  print(response.headers.get("X-My-Header"))
@@ -41,7 +41,7 @@ client = Nimble(
41
41
  api_key=os.environ.get("NIMBLE_API_KEY"), # This is the default and can be omitted
42
42
  )
43
43
 
44
- response = client.extract(
44
+ response = client.extract.run(
45
45
  url="https://exapmle.com",
46
46
  )
47
47
  print(response.task_id)
@@ -67,7 +67,7 @@ client = AsyncNimble(
67
67
 
68
68
 
69
69
  async def main() -> None:
70
- response = await client.extract(
70
+ response = await client.extract.run(
71
71
  url="https://exapmle.com",
72
72
  )
73
73
  print(response.task_id)
@@ -103,7 +103,7 @@ async def main() -> None:
103
103
  api_key=os.environ.get("NIMBLE_API_KEY"), # This is the default and can be omitted
104
104
  http_client=DefaultAioHttpClient(),
105
105
  ) as client:
106
- response = await client.extract(
106
+ response = await client.extract.run(
107
107
  url="https://exapmle.com",
108
108
  )
109
109
  print(response.task_id)
@@ -130,7 +130,7 @@ from nimble_python import Nimble
130
130
 
131
131
  client = Nimble()
132
132
 
133
- response = client.extract(
133
+ response = client.extract.run(
134
134
  url="url",
135
135
  session={},
136
136
  )
@@ -153,7 +153,7 @@ from nimble_python import Nimble
153
153
  client = Nimble()
154
154
 
155
155
  try:
156
- client.extract(
156
+ client.extract.run(
157
157
  url="https://exapmle.com",
158
158
  )
159
159
  except nimble_python.APIConnectionError as e:
@@ -198,7 +198,7 @@ client = Nimble(
198
198
  )
199
199
 
200
200
  # Or, configure per-request:
201
- client.with_options(max_retries=5).extract(
201
+ client.with_options(max_retries=5).extract.run(
202
202
  url="https://exapmle.com",
203
203
  )
204
204
  ```
@@ -223,7 +223,7 @@ client = Nimble(
223
223
  )
224
224
 
225
225
  # Override per-request:
226
- client.with_options(timeout=5.0).extract(
226
+ client.with_options(timeout=5.0).extract.run(
227
227
  url="https://exapmle.com",
228
228
  )
229
229
  ```
@@ -266,13 +266,13 @@ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to
266
266
  from nimble_python import Nimble
267
267
 
268
268
  client = Nimble()
269
- response = client.with_raw_response.extract(
269
+ response = client.extract.with_raw_response.run(
270
270
  url="https://exapmle.com",
271
271
  )
272
272
  print(response.headers.get('X-My-Header'))
273
273
 
274
- client = response.parse() # get the object that `extract()` would have returned
275
- print(client.task_id)
274
+ extract = response.parse() # get the object that `extract.run()` would have returned
275
+ print(extract.task_id)
276
276
  ```
277
277
 
278
278
  These methods return an [`APIResponse`](https://github.com/Nimbleway/nimble-python/tree/main/src/nimble_python/_response.py) object.
@@ -286,7 +286,7 @@ The above interface eagerly reads the full response body when you make the reque
286
286
  To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
287
287
 
288
288
  ```python
289
- with client.with_streaming_response.extract(
289
+ with client.extract.with_streaming_response.run(
290
290
  url="https://exapmle.com",
291
291
  ) as response:
292
292
  print(response.headers.get("X-My-Header"))
@@ -0,0 +1,312 @@
1
+ # Shared Types
2
+
3
+ ```python
4
+ from nimble_python.types import (
5
+ AutoScrollAction,
6
+ ClickAction,
7
+ EvalAction,
8
+ FetchAction,
9
+ FillAction,
10
+ GetCookiesAction,
11
+ GotoAction,
12
+ PressAction,
13
+ ScreenshotAction,
14
+ ScrollAction,
15
+ WaitAction,
16
+ WaitForElementAction,
17
+ WaitForNavigationAction,
18
+ )
19
+ ```
20
+
21
+ # Nimble
22
+
23
+ Types:
24
+
25
+ ```python
26
+ from nimble_python.types import MapResponse, SearchResponse
27
+ ```
28
+
29
+ Methods:
30
+
31
+ - <code title="post /v2/map">client.<a href="./src/nimble_python/_client.py">map</a>(\*\*<a href="src/nimble_python/types/client_map_params.py">params</a>) -> <a href="./src/nimble_python/types/map_response.py">MapResponse</a></code>
32
+ - <code title="post /v2/search">client.<a href="./src/nimble_python/_client.py">search</a>(\*\*<a href="src/nimble_python/types/client_search_params.py">params</a>) -> <a href="./src/nimble_python/types/search_response.py">SearchResponse</a></code>
33
+
34
+ # Extract
35
+
36
+ Types:
37
+
38
+ ```python
39
+ from nimble_python.types import ExtractAsyncResponse, ExtractBatchResponse, ExtractRunResponse
40
+ ```
41
+
42
+ Methods:
43
+
44
+ - <code title="post /v2/extract/async">client.extract.<a href="./src/nimble_python/resources/extract/extract.py">async\_</a>(\*\*<a href="src/nimble_python/types/extract_async_params.py">params</a>) -> <a href="./src/nimble_python/types/extract_async_response.py">ExtractAsyncResponse</a></code>
45
+ - <code title="post /v2/extract/batch">client.extract.<a href="./src/nimble_python/resources/extract/extract.py">batch</a>(\*\*<a href="src/nimble_python/types/extract_batch_params.py">params</a>) -> <a href="./src/nimble_python/types/extract_batch_response.py">ExtractBatchResponse</a></code>
46
+ - <code title="post /v2/extract">client.extract.<a href="./src/nimble_python/resources/extract/extract.py">run</a>(\*\*<a href="src/nimble_python/types/extract_run_params.py">params</a>) -> <a href="./src/nimble_python/types/extract_run_response.py">ExtractRunResponse</a></code>
47
+
48
+ ## Templates
49
+
50
+ Types:
51
+
52
+ ```python
53
+ from nimble_python.types.extract import (
54
+ TemplateUpdateResponse,
55
+ TemplateListResponse,
56
+ TemplateAsyncResponse,
57
+ TemplateBatchResponse,
58
+ TemplateGetResponse,
59
+ TemplateRunResponse,
60
+ )
61
+ ```
62
+
63
+ Methods:
64
+
65
+ - <code title="patch /v2/extract/templates/{extract_template_name}">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">update</a>(extract_template_name, \*\*<a href="src/nimble_python/types/extract/template_update_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/template_update_response.py">TemplateUpdateResponse</a></code>
66
+ - <code title="get /v2/extract/templates">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">list</a>(\*\*<a href="src/nimble_python/types/extract/template_list_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/template_list_response.py">TemplateListResponse</a></code>
67
+ - <code title="delete /v2/extract/templates/{extract_template_name}">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">delete</a>(extract_template_name) -> None</code>
68
+ - <code title="post /v2/extract/templates/async">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">async\_</a>(\*\*<a href="src/nimble_python/types/extract/template_async_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/template_async_response.py">TemplateAsyncResponse</a></code>
69
+ - <code title="post /v2/extract/templates/batch">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">batch</a>(\*\*<a href="src/nimble_python/types/extract/template_batch_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/template_batch_response.py">TemplateBatchResponse</a></code>
70
+ - <code title="get /v2/extract/templates/{extract_template_name}">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">get</a>(extract_template_name) -> <a href="./src/nimble_python/types/extract/template_get_response.py">TemplateGetResponse</a></code>
71
+ - <code title="post /v2/extract/templates/run">client.extract.templates.<a href="./src/nimble_python/resources/extract/templates/templates.py">run</a>(\*\*<a href="src/nimble_python/types/extract/template_run_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/template_run_response.py">TemplateRunResponse</a></code>
72
+
73
+ ### Generations
74
+
75
+ Types:
76
+
77
+ ```python
78
+ from nimble_python.types.extract.templates import GenerationCreateResponse, GenerationGetResponse
79
+ ```
80
+
81
+ Methods:
82
+
83
+ - <code title="post /v2/extract/templates/generations">client.extract.templates.generations.<a href="./src/nimble_python/resources/extract/templates/generations.py">create</a>(\*\*<a href="src/nimble_python/types/extract/templates/generation_create_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/templates/generation_create_response.py">GenerationCreateResponse</a></code>
84
+ - <code title="get /v2/extract/templates/generations/{generation_id}">client.extract.templates.generations.<a href="./src/nimble_python/resources/extract/templates/generations.py">get</a>(generation_id) -> <a href="./src/nimble_python/types/extract/templates/generation_get_response.py">GenerationGetResponse</a></code>
85
+
86
+ ### Versions
87
+
88
+ Types:
89
+
90
+ ```python
91
+ from nimble_python.types.extract.templates import VersionListResponse, VersionGetResponse
92
+ ```
93
+
94
+ Methods:
95
+
96
+ - <code title="get /v2/extract/templates/{extract_template_name}/versions">client.extract.templates.versions.<a href="./src/nimble_python/resources/extract/templates/versions.py">list</a>(extract_template_name, \*\*<a href="src/nimble_python/types/extract/templates/version_list_params.py">params</a>) -> <a href="./src/nimble_python/types/extract/templates/version_list_response.py">VersionListResponse</a></code>
97
+ - <code title="get /v2/extract/templates/{extract_template_name}/versions/{version_id}">client.extract.templates.versions.<a href="./src/nimble_python/resources/extract/templates/versions.py">get</a>(version_id, \*, extract_template_name) -> <a href="./src/nimble_python/types/extract/templates/version_get_response.py">VersionGetResponse</a></code>
98
+
99
+ # Agents
100
+
101
+ Types:
102
+
103
+ ```python
104
+ from nimble_python.types import (
105
+ AgentCreateResponse,
106
+ AgentUpdateResponse,
107
+ AgentListResponse,
108
+ AgentGetResponse,
109
+ )
110
+ ```
111
+
112
+ Methods:
113
+
114
+ - <code title="post /v2/agents">client.agents.<a href="./src/nimble_python/resources/agents/agents.py">create</a>(\*\*<a href="src/nimble_python/types/agent_create_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_create_response.py">AgentCreateResponse</a></code>
115
+ - <code title="patch /v2/agents/{agent_id}">client.agents.<a href="./src/nimble_python/resources/agents/agents.py">update</a>(agent_id, \*\*<a href="src/nimble_python/types/agent_update_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_update_response.py">AgentUpdateResponse</a></code>
116
+ - <code title="get /v2/agents">client.agents.<a href="./src/nimble_python/resources/agents/agents.py">list</a>(\*\*<a href="src/nimble_python/types/agent_list_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_list_response.py">AgentListResponse</a></code>
117
+ - <code title="delete /v2/agents/{agent_id}">client.agents.<a href="./src/nimble_python/resources/agents/agents.py">delete</a>(agent_id) -> None</code>
118
+ - <code title="get /v2/agents/{agent_id}">client.agents.<a href="./src/nimble_python/resources/agents/agents.py">get</a>(agent_id) -> <a href="./src/nimble_python/types/agent_get_response.py">AgentGetResponse</a></code>
119
+
120
+ ## Templates
121
+
122
+ Types:
123
+
124
+ ```python
125
+ from nimble_python.types.agents import TemplateListResponse, TemplateGetResponse
126
+ ```
127
+
128
+ Methods:
129
+
130
+ - <code title="get /v2/agents/templates">client.agents.templates.<a href="./src/nimble_python/resources/agents/templates.py">list</a>(\*\*<a href="src/nimble_python/types/agents/template_list_params.py">params</a>) -> <a href="./src/nimble_python/types/agents/template_list_response.py">TemplateListResponse</a></code>
131
+ - <code title="get /v2/agents/templates/{template_name}">client.agents.templates.<a href="./src/nimble_python/resources/agents/templates.py">get</a>(template_name) -> <a href="./src/nimble_python/types/agents/template_get_response.py">TemplateGetResponse</a></code>
132
+
133
+ ## Runs
134
+
135
+ Types:
136
+
137
+ ```python
138
+ from nimble_python.types.agents import (
139
+ RunCreateResponse,
140
+ RunListResponse,
141
+ RunGetResponse,
142
+ RunResultResponse,
143
+ )
144
+ ```
145
+
146
+ Methods:
147
+
148
+ - <code title="post /v2/agents/{agent_id}/runs">client.agents.runs.<a href="./src/nimble_python/resources/agents/runs.py">create</a>(agent_id, \*\*<a href="src/nimble_python/types/agents/run_create_params.py">params</a>) -> <a href="./src/nimble_python/types/agents/run_create_response.py">RunCreateResponse</a></code>
149
+ - <code title="get /v2/agents/{agent_id}/runs">client.agents.runs.<a href="./src/nimble_python/resources/agents/runs.py">list</a>(agent_id, \*\*<a href="src/nimble_python/types/agents/run_list_params.py">params</a>) -> <a href="./src/nimble_python/types/agents/run_list_response.py">RunListResponse</a></code>
150
+ - <code title="get /v2/agents/{agent_id}/runs/{run_id}">client.agents.runs.<a href="./src/nimble_python/resources/agents/runs.py">get</a>(run_id, \*, agent_id) -> <a href="./src/nimble_python/types/agents/run_get_response.py">RunGetResponse</a></code>
151
+ - <code title="get /v2/agents/{agent_id}/runs/{run_id}/result">client.agents.runs.<a href="./src/nimble_python/resources/agents/runs.py">result</a>(run_id, \*, agent_id) -> <a href="./src/nimble_python/types/agents/run_result_response.py">RunResultResponse</a></code>
152
+ - <code title="get /v2/agents/{agent_id}/runs/{run_id}/events">client.agents.runs.<a href="./src/nimble_python/resources/agents/runs.py">stream_events</a>(run_id, \*, agent_id) -> None</code>
153
+
154
+ # Crawl
155
+
156
+ Types:
157
+
158
+ ```python
159
+ from nimble_python.types import (
160
+ CrawlListResponse,
161
+ CrawlRunResponse,
162
+ CrawlStatusResponse,
163
+ CrawlTerminateResponse,
164
+ )
165
+ ```
166
+
167
+ Methods:
168
+
169
+ - <code title="get /v2/crawl">client.crawl.<a href="./src/nimble_python/resources/crawl.py">list</a>(\*\*<a href="src/nimble_python/types/crawl_list_params.py">params</a>) -> <a href="./src/nimble_python/types/crawl_list_response.py">CrawlListResponse</a></code>
170
+ - <code title="post /v2/crawl">client.crawl.<a href="./src/nimble_python/resources/crawl.py">run</a>(\*\*<a href="src/nimble_python/types/crawl_run_params.py">params</a>) -> <a href="./src/nimble_python/types/crawl_run_response.py">CrawlRunResponse</a></code>
171
+ - <code title="get /v2/crawl/{id}">client.crawl.<a href="./src/nimble_python/resources/crawl.py">status</a>(id) -> <a href="./src/nimble_python/types/crawl_status_response.py">CrawlStatusResponse</a></code>
172
+ - <code title="delete /v2/crawl/{id}">client.crawl.<a href="./src/nimble_python/resources/crawl.py">terminate</a>(id) -> <a href="./src/nimble_python/types/crawl_terminate_response.py">CrawlTerminateResponse</a></code>
173
+
174
+ # Tasks
175
+
176
+ Types:
177
+
178
+ ```python
179
+ from nimble_python.types import TaskListResponse, TaskGetResponse, TaskResultsResponse
180
+ ```
181
+
182
+ Methods:
183
+
184
+ - <code title="get /v2/tasks">client.tasks.<a href="./src/nimble_python/resources/tasks.py">list</a>(\*\*<a href="src/nimble_python/types/task_list_params.py">params</a>) -> <a href="./src/nimble_python/types/task_list_response.py">TaskListResponse</a></code>
185
+ - <code title="get /v2/tasks/{task_id}">client.tasks.<a href="./src/nimble_python/resources/tasks.py">get</a>(task_id) -> <a href="./src/nimble_python/types/task_get_response.py">TaskGetResponse</a></code>
186
+ - <code title="get /v2/tasks/{task_id}/results">client.tasks.<a href="./src/nimble_python/resources/tasks.py">results</a>(task_id) -> <a href="./src/nimble_python/types/task_results_response.py">TaskResultsResponse</a></code>
187
+
188
+ # Batches
189
+
190
+ Types:
191
+
192
+ ```python
193
+ from nimble_python.types import BatchGetResponse, BatchProgressResponse
194
+ ```
195
+
196
+ Methods:
197
+
198
+ - <code title="get /v2/batches">client.batches.<a href="./src/nimble_python/resources/batches.py">list</a>() -> None</code>
199
+ - <code title="get /v2/batches/{batch_id}">client.batches.<a href="./src/nimble_python/resources/batches.py">get</a>(batch_id) -> <a href="./src/nimble_python/types/batch_get_response.py">BatchGetResponse</a></code>
200
+ - <code title="get /v2/batches/{batch_id}/progress">client.batches.<a href="./src/nimble_python/resources/batches.py">progress</a>(batch_id) -> <a href="./src/nimble_python/types/batch_progress_response.py">BatchProgressResponse</a></code>
201
+
202
+ # DomainKnowledge
203
+
204
+ Types:
205
+
206
+ ```python
207
+ from nimble_python.types import DomainKnowledgeGetDriverResponse
208
+ ```
209
+
210
+ Methods:
211
+
212
+ - <code title="get /v2/domain-knowledge/driver">client.domain_knowledge.<a href="./src/nimble_python/resources/domain_knowledge.py">get_driver</a>(\*\*<a href="src/nimble_python/types/domain_knowledge_get_driver_params.py">params</a>) -> <a href="./src/nimble_python/types/domain_knowledge_get_driver_response.py">DomainKnowledgeGetDriverResponse</a></code>
213
+
214
+ # Media
215
+
216
+ Types:
217
+
218
+ ```python
219
+ from nimble_python.types import MediaRunResponse, MediaRunAsyncResponse
220
+ ```
221
+
222
+ Methods:
223
+
224
+ - <code title="post /v2/media">client.media.<a href="./src/nimble_python/resources/media.py">run</a>(\*\*<a href="src/nimble_python/types/media_run_params.py">params</a>) -> <a href="./src/nimble_python/types/media_run_response.py">MediaRunResponse</a></code>
225
+ - <code title="post /v2/media/async">client.media.<a href="./src/nimble_python/resources/media.py">run_async</a>(\*\*<a href="src/nimble_python/types/media_run_async_params.py">params</a>) -> <a href="./src/nimble_python/types/media_run_async_response.py">MediaRunAsyncResponse</a></code>
226
+
227
+ # Serp
228
+
229
+ Types:
230
+
231
+ ```python
232
+ from nimble_python.types import SerpRunResponse, SerpRunAsyncResponse, SerpRunBatchResponse
233
+ ```
234
+
235
+ Methods:
236
+
237
+ - <code title="post /v2/serp">client.serp.<a href="./src/nimble_python/resources/serp.py">run</a>(\*\*<a href="src/nimble_python/types/serp_run_params.py">params</a>) -> <a href="./src/nimble_python/types/serp_run_response.py">SerpRunResponse</a></code>
238
+ - <code title="post /v2/serp/async">client.serp.<a href="./src/nimble_python/resources/serp.py">run_async</a>(\*\*<a href="src/nimble_python/types/serp_run_async_params.py">params</a>) -> <a href="./src/nimble_python/types/serp_run_async_response.py">SerpRunAsyncResponse</a></code>
239
+ - <code title="post /v2/serp/batch">client.serp.<a href="./src/nimble_python/resources/serp.py">run_batch</a>(\*\*<a href="src/nimble_python/types/serp_run_batch_params.py">params</a>) -> <a href="./src/nimble_python/types/serp_run_batch_response.py">SerpRunBatchResponse</a></code>
240
+
241
+ # FastSerp
242
+
243
+ Types:
244
+
245
+ ```python
246
+ from nimble_python.types import FastSerpRunResponse
247
+ ```
248
+
249
+ Methods:
250
+
251
+ - <code title="post /v2/fast-serp">client.fast_serp.<a href="./src/nimble_python/resources/fast_serp.py">run</a>(\*\*<a href="src/nimble_python/types/fast_serp_run_params.py">params</a>) -> <a href="./src/nimble_python/types/fast_serp_run_response.py">FastSerpRunResponse</a></code>
252
+
253
+ # Jobs
254
+
255
+ Types:
256
+
257
+ ```python
258
+ from nimble_python.types import (
259
+ JobCreateResponse,
260
+ JobUpdateResponse,
261
+ JobListResponse,
262
+ JobGetResponse,
263
+ )
264
+ ```
265
+
266
+ Methods:
267
+
268
+ - <code title="post /v2/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>
269
+ - <code title="patch /v2/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>
270
+ - <code title="get /v2/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>
271
+ - <code title="delete /v2/jobs/{job_id}">client.jobs.<a href="./src/nimble_python/resources/jobs/jobs.py">delete</a>(job_id) -> None</code>
272
+ - <code title="get /v2/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>
273
+
274
+ ## Runs
275
+
276
+ Types:
277
+
278
+ ```python
279
+ from nimble_python.types.jobs import (
280
+ RunCreateResponse,
281
+ RunListResponse,
282
+ RunCancelResponse,
283
+ RunGetResponse,
284
+ )
285
+ ```
286
+
287
+ Methods:
288
+
289
+ - <code title="post /v2/jobs/{job_id}/runs">client.jobs.runs.<a href="./src/nimble_python/resources/jobs/runs/runs.py">create</a>(job_id) -> <a href="./src/nimble_python/types/jobs/run_create_response.py">RunCreateResponse</a></code>
290
+ - <code title="get /v2/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>
291
+ - <code title="post /v2/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>
292
+ - <code title="get /v2/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>
293
+
294
+ ### Artifacts
295
+
296
+ Types:
297
+
298
+ ```python
299
+ from nimble_python.types.jobs.runs import (
300
+ ArtifactListResponse,
301
+ ArtifactDownloadURLResponse,
302
+ ArtifactGetResponse,
303
+ ArtifactPreviewResponse,
304
+ )
305
+ ```
306
+
307
+ Methods:
308
+
309
+ - <code title="get /v2/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>
310
+ - <code title="get /v2/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>
311
+ - <code title="get /v2/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>
312
+ - <code title="get /v2/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.23.0"
3
+ version = "1.0.0"
4
4
  description = "The official Python library for the nimble API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"