pulse-python-sdk 1.0.5__tar.gz → 1.0.6__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.
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/PKG-INFO +1 -1
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/pyproject.toml +1 -1
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/__init__.py +3 -2
- pulse_python_sdk-1.0.6/src/pulse/batch/client.py +709 -0
- pulse_python_sdk-1.0.6/src/pulse/batch/raw_client.py +1088 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/client.py +69 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/client_wrapper.py +2 -2
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/raw_client.py +50 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_extract_response.py +34 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_extract_response_status.py +5 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_extraction_ids.py +33 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_input_source.py +42 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_output_destination.py +38 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_schema_response.py +39 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_schema_response_status.py +5 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_split_response.py +34 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_split_response_status.py +5 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_tables_response.py +34 -0
- pulse_python_sdk-1.0.6/src/pulse/types/batch_tables_response_status.py +5 -0
- pulse_python_sdk-1.0.6/src/pulse/types/extract_async_request_model.py +5 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input.py +6 -0
- pulse_python_sdk-1.0.6/src/pulse/types/extract_input_model.py +5 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options.py +6 -0
- pulse_python_sdk-1.0.6/src/pulse/types/extract_options_model.py +5 -0
- pulse_python_sdk-1.0.6/src/pulse/types/extract_request_model.py +5 -0
- pulse_python_sdk-1.0.6/src/pulse/webhooks/types/__init__.py +4 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/README.md +0 -0
- {pulse_python_sdk-1.0.5/src/pulse/errors → pulse_python_sdk-1.0.6/src/pulse/batch}/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/api_error.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/datetime_utils.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/file.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/force_multipart.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_client.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_sse/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_sse/_api.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_sse/_decoders.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_sse/_exceptions.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/http_sse/_models.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/jsonable_encoder.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/pydantic_utilities.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/query_encoder.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/remove_none_from_dict.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/request_options.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/serialization.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/core/unchecked_base_model.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/environment.py +0 -0
- {pulse_python_sdk-1.0.5/src/pulse/jobs → pulse_python_sdk-1.0.6/src/pulse/errors}/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/errors/bad_request_error.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/errors/forbidden_error.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/errors/internal_server_error.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/errors/not_found_error.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/errors/too_many_requests_error.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/errors/unauthorized_error.py +0 -0
- {pulse_python_sdk-1.0.5/src/pulse/types → pulse_python_sdk-1.0.6/src/pulse/jobs}/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/jobs/client.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/jobs/raw_client.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/py.typed +0 -0
- {pulse_python_sdk-1.0.5/src/pulse/webhooks → pulse_python_sdk-1.0.6/src/pulse/types}/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/async_submission_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/async_submission_response_status.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_extensions.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_extensions_alt_outputs.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_extensions_chunking.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_extensions_chunking_chunk_types_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_figure_processing.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_schema.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_storage.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_request_structured_output.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_async_submission_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_extensions.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_extensions_alt_outputs.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_extensions_chunking.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_extensions_chunking_chunk_types_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_figure_processing.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_schema.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_storage.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_input_structured_output.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_extensions.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_extensions_alt_outputs.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_extensions_chunking.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_extensions_chunking_chunk_types_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_figure_processing.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_schema.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_storage.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_options_structured_output.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_extensions.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_extensions_alt_outputs.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_extensions_chunking.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_extensions_chunking_chunk_types_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_figure_processing.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_schema.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_storage.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_request_structured_output.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_chunks.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_extensions.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_extensions_alt_outputs.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_extensions_alt_outputs_wlbb.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_extensions_alt_outputs_wlbb_words_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_extensions_chunking.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_extensions_footnote_references_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_response_plan_info.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/extract_source.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/job_cancellation_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/job_status.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/job_status_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/schema_config.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/schema_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/single_schema_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/split_config.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/split_output.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/split_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/split_schema_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/structured_output_config.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/structured_output_result.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/tables_config.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/tables_config_table_format.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/tables_response.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/tables_response_tables_output.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/tables_response_tables_output_tables_item.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/topic_definition.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/types/topic_schema_config.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/version.py +0 -0
- {pulse_python_sdk-1.0.5/src/pulse/webhooks/types → pulse_python_sdk-1.0.6/src/pulse/webhooks}/__init__.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/webhooks/client.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/webhooks/raw_client.py +0 -0
- {pulse_python_sdk-1.0.5 → pulse_python_sdk-1.0.6}/src/pulse/webhooks/types/create_webhook_link_response.py +0 -0
|
@@ -6,13 +6,14 @@ import typing
|
|
|
6
6
|
from importlib import import_module
|
|
7
7
|
|
|
8
8
|
if typing.TYPE_CHECKING:
|
|
9
|
-
from . import jobs, webhooks
|
|
9
|
+
from . import batch, jobs, webhooks
|
|
10
10
|
from .client import AsyncPulse, Pulse
|
|
11
11
|
from .version import __version__
|
|
12
12
|
_dynamic_imports: typing.Dict[str, str] = {
|
|
13
13
|
"AsyncPulse": ".client",
|
|
14
14
|
"Pulse": ".client",
|
|
15
15
|
"__version__": ".version",
|
|
16
|
+
"batch": ".batch",
|
|
16
17
|
"jobs": ".jobs",
|
|
17
18
|
"webhooks": ".webhooks",
|
|
18
19
|
}
|
|
@@ -39,4 +40,4 @@ def __dir__():
|
|
|
39
40
|
return sorted(lazy_attrs)
|
|
40
41
|
|
|
41
42
|
|
|
42
|
-
__all__ = ["AsyncPulse", "Pulse", "__version__", "jobs", "webhooks"]
|
|
43
|
+
__all__ = ["AsyncPulse", "Pulse", "__version__", "batch", "jobs", "webhooks"]
|