nimble_python 0.14.0__tar.gz → 0.16.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.
- nimble_python-0.16.0/.release-please-manifest.json +3 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/CHANGELOG.md +22 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/PKG-INFO +1 -1
- {nimble_python-0.14.0 → nimble_python-0.16.0}/api.md +8 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/pyproject.toml +1 -1
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_qs.py +4 -1
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_version.py +1 -1
- nimble_python-0.16.0/src/nimble_python/resources/agent.py +1010 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/__init__.py +7 -0
- nimble_python-0.16.0/src/nimble_python/types/agent_generate_params.py +31 -0
- nimble_python-0.16.0/src/nimble_python/types/agent_generate_response.py +32 -0
- nimble_python-0.16.0/src/nimble_python/types/agent_get_generation_response.py +32 -0
- nimble_python-0.16.0/src/nimble_python/types/agent_publish_params.py +11 -0
- nimble_python-0.16.0/src/nimble_python/types/agent_publish_response.py +11 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_run_async_params.py +5 -2
- nimble_python-0.16.0/src/nimble_python/types/agent_run_batch_params.py +34 -0
- nimble_python-0.16.0/src/nimble_python/types/agent_run_batch_response.py +68 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_run_params.py +5 -2
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_run_response.py +3 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/extract_response.py +3 -0
- nimble_python-0.16.0/tests/api_resources/test_agent.py +869 -0
- nimble_python-0.14.0/.release-please-manifest.json +0 -3
- nimble_python-0.14.0/src/nimble_python/resources/agent.py +0 -527
- nimble_python-0.14.0/tests/api_resources/test_agent.py +0 -391
- {nimble_python-0.14.0 → nimble_python-0.16.0}/.gitignore +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/CONTRIBUTING.md +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/LICENSE +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/README.md +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/SECURITY.md +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/bin/check-release-environment +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/bin/publish-pypi +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/examples/.keep +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/release-please-config.json +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/requirements-dev.lock +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_base_client.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_client.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_compat.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_constants.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_exceptions.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_files.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_models.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_resource.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_streaming.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_types.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_compat.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_datetime_parse.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_json.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_logs.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_path.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_proxy.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_reflection.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_resources_proxy.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_streams.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_sync.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_transform.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_typing.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/_utils/_utils.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/lib/.keep +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/py.typed +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/resources/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/resources/batches.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/resources/crawl.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/resources/tasks.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_get_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_list_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_list_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/agent_run_async_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/batch_get_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/batch_progress_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/client_extract_async_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/client_extract_batch_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/client_extract_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/client_map_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/client_search_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/crawl_list_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/crawl_list_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/crawl_run_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/crawl_run_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/crawl_status_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/crawl_terminate_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/extract_async_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/extract_batch_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/map_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/search_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/auto_scroll_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/click_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/eval_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/fetch_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/fill_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/get_cookies_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/goto_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/press_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/screenshot_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/scroll_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/wait_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/wait_for_element_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared/wait_for_navigation_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/auto_scroll_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/click_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/eval_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/fetch_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/fill_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/get_cookies_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/goto_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/press_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/screenshot_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/scroll_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/wait_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/wait_for_element_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/shared_params/wait_for_navigation_action.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/task_get_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/task_list_params.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/task_list_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimble_python/types/task_results_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/src/nimbleway/lib/.keep +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/api_resources/__init__.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/api_resources/test_batches.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/api_resources/test_client.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/api_resources/test_crawl.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/api_resources/test_tasks.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/conftest.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/sample_file.txt +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_client.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_deepcopy.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_extract_files.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_files.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_models.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_qs.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_required_args.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_response.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_streaming.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_transform.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_utils/test_json.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_utils/test_path.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_utils/test_proxy.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/test_utils/test_typing.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/tests/utils.py +0 -0
- {nimble_python-0.14.0 → nimble_python-0.16.0}/uv.lock +0 -0
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.0 (2026-03-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.15.0...v0.16.0](https://github.com/Nimbleway/nimble-python/compare/v0.15.0...v0.16.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([3eace9f](https://github.com/Nimbleway/nimble-python/commit/3eace9fa853d589ff0753ed4b4964484dfb7405a))
|
|
10
|
+
* **api:** manual updates ([13646ce](https://github.com/Nimbleway/nimble-python/commit/13646ce53a4cc507d221f5d74d85a83727c2853a))
|
|
11
|
+
* **api:** manual updates ([fa62b16](https://github.com/Nimbleway/nimble-python/commit/fa62b167efb6f2804bfa6d26f01af01d196e1f30))
|
|
12
|
+
* **api:** manual updates ([0be811a](https://github.com/Nimbleway/nimble-python/commit/0be811afd90cf2325bd1e707081fc7a778b75aed))
|
|
13
|
+
* **api:** rename agent resource -> agents ([161e3fb](https://github.com/Nimbleway/nimble-python/commit/161e3fb98d9329b6c33f10c9eb0a9548130e00cd))
|
|
14
|
+
|
|
15
|
+
## 0.15.0 (2026-03-29)
|
|
16
|
+
|
|
17
|
+
Full Changelog: [v0.14.0...v0.15.0](https://github.com/Nimbleway/nimble-python/compare/v0.14.0...v0.15.0)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **api:** api update ([691eb61](https://github.com/Nimbleway/nimble-python/commit/691eb61893fadbc901e48eaf17077a229abc06f5))
|
|
22
|
+
* **api:** manual updates ([99d2baf](https://github.com/Nimbleway/nimble-python/commit/99d2baff4c87c9402cf4f3615825d6c8b42e5d28))
|
|
23
|
+
* **internal:** implement indices array format for query and form serialization ([e74fd0c](https://github.com/Nimbleway/nimble-python/commit/e74fd0c52e59349932a467177eb6f5f5b554f218))
|
|
24
|
+
|
|
3
25
|
## 0.14.0 (2026-03-25)
|
|
4
26
|
|
|
5
27
|
Full Changelog: [v0.13.0...v0.14.0](https://github.com/Nimbleway/nimble-python/compare/v0.13.0...v0.14.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: nimble_python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.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
|
|
@@ -47,18 +47,26 @@ Types:
|
|
|
47
47
|
```python
|
|
48
48
|
from nimble_python.types import (
|
|
49
49
|
AgentListResponse,
|
|
50
|
+
AgentGenerateResponse,
|
|
50
51
|
AgentGetResponse,
|
|
52
|
+
AgentGetGenerationResponse,
|
|
53
|
+
AgentPublishResponse,
|
|
51
54
|
AgentRunResponse,
|
|
52
55
|
AgentRunAsyncResponse,
|
|
56
|
+
AgentRunBatchResponse,
|
|
53
57
|
)
|
|
54
58
|
```
|
|
55
59
|
|
|
56
60
|
Methods:
|
|
57
61
|
|
|
58
62
|
- <code title="get /v1/agents">client.agent.<a href="./src/nimble_python/resources/agent.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>
|
|
63
|
+
- <code title="post /v1/agents/generations">client.agent.<a href="./src/nimble_python/resources/agent.py">generate</a>(\*\*<a href="src/nimble_python/types/agent_generate_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_generate_response.py">AgentGenerateResponse</a></code>
|
|
59
64
|
- <code title="get /v1/agents/{template_name}">client.agent.<a href="./src/nimble_python/resources/agent.py">get</a>(template_name) -> <a href="./src/nimble_python/types/agent_get_response.py">AgentGetResponse</a></code>
|
|
65
|
+
- <code title="get /v1/agents/generations/{generation_id}">client.agent.<a href="./src/nimble_python/resources/agent.py">get_generation</a>(generation_id) -> <a href="./src/nimble_python/types/agent_get_generation_response.py">AgentGetGenerationResponse</a></code>
|
|
66
|
+
- <code title="post /v1/agents/{agent_name}/publish">client.agent.<a href="./src/nimble_python/resources/agent.py">publish</a>(agent_name, \*\*<a href="src/nimble_python/types/agent_publish_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_publish_response.py">AgentPublishResponse</a></code>
|
|
60
67
|
- <code title="post /v1/agents/run">client.agent.<a href="./src/nimble_python/resources/agent.py">run</a>(\*\*<a href="src/nimble_python/types/agent_run_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_run_response.py">AgentRunResponse</a></code>
|
|
61
68
|
- <code title="post /v1/agents/async">client.agent.<a href="./src/nimble_python/resources/agent.py">run_async</a>(\*\*<a href="src/nimble_python/types/agent_run_async_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_run_async_response.py">AgentRunAsyncResponse</a></code>
|
|
69
|
+
- <code title="post /v1/agents/batch">client.agent.<a href="./src/nimble_python/resources/agent.py">run_batch</a>(\*\*<a href="src/nimble_python/types/agent_run_batch_params.py">params</a>) -> <a href="./src/nimble_python/types/agent_run_batch_response.py">AgentRunBatchResponse</a></code>
|
|
62
70
|
|
|
63
71
|
# Crawl
|
|
64
72
|
|
|
@@ -101,7 +101,10 @@ class Querystring:
|
|
|
101
101
|
items.extend(self._stringify_item(key, item, opts))
|
|
102
102
|
return items
|
|
103
103
|
elif array_format == "indices":
|
|
104
|
-
|
|
104
|
+
items = []
|
|
105
|
+
for i, item in enumerate(value):
|
|
106
|
+
items.extend(self._stringify_item(f"{key}[{i}]", item, opts))
|
|
107
|
+
return items
|
|
105
108
|
elif array_format == "brackets":
|
|
106
109
|
items = []
|
|
107
110
|
key = key + "[]"
|