apache-beam 2.75.0__tar.gz → 2.76.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.
- apache_beam-2.76.0/PKG-INFO +430 -0
- apache_beam-2.76.0/apache_beam/coders/row_coder_test.py +516 -0
- apache_beam-2.76.0/apache_beam/dataframe/io.py +901 -0
- apache_beam-2.76.0/apache_beam/dataframe/io_test.py +543 -0
- apache_beam-2.76.0/apache_beam/examples/complete/autocomplete.py +91 -0
- apache_beam-2.76.0/apache_beam/examples/complete/game/game_stats.py +405 -0
- apache_beam-2.76.0/apache_beam/examples/complete/game/hourly_team_score.py +315 -0
- apache_beam-2.76.0/apache_beam/examples/complete/game/leader_board.py +368 -0
- apache_beam-2.76.0/apache_beam/examples/complete/game/user_score.py +190 -0
- apache_beam-2.76.0/apache_beam/examples/complete/top_wikipedia_sessions.py +167 -0
- apache_beam-2.76.0/apache_beam/examples/cookbook/bigtableio_it_test.py +206 -0
- apache_beam-2.76.0/apache_beam/examples/inference/pytorch_image_captioning.py +641 -0
- apache_beam-2.76.0/apache_beam/examples/inference/pytorch_image_classification_with_side_inputs.py +217 -0
- apache_beam-2.76.0/apache_beam/examples/inference/pytorch_image_object_detection.py +517 -0
- apache_beam-2.76.0/apache_beam/examples/inference/pytorch_imagenet_rightfit.py +537 -0
- apache_beam-2.76.0/apache_beam/examples/inference/vllm_text_completion.py +227 -0
- apache_beam-2.76.0/apache_beam/examples/ml_transform/mltransform_image_embedding.py +263 -0
- apache_beam-2.76.0/apache_beam/examples/ml_transform/mltransform_image_embedding_test.py +105 -0
- apache_beam-2.76.0/apache_beam/examples/ml_transform/mltransform_one_hot_encoding_test.py +257 -0
- apache_beam-2.76.0/apache_beam/examples/ml_transform/mltransform_text_embedding.py +186 -0
- apache_beam-2.76.0/apache_beam/examples/ml_transform/mltransform_text_embedding_test.py +94 -0
- apache_beam-2.76.0/apache_beam/examples/snippets/transforms/elementwise/enrichment_test.py +419 -0
- apache_beam-2.76.0/apache_beam/examples/wordcount_debugging.py +191 -0
- apache_beam-2.76.0/apache_beam/examples/wordcount_with_metrics.py +153 -0
- apache_beam-2.76.0/apache_beam/io/components/rate_limit_pb2.py +63 -0
- apache_beam-2.76.0/apache_beam/io/components/rate_limiter.py +249 -0
- apache_beam-2.76.0/apache_beam/io/components/rate_limiter_test.py +181 -0
- apache_beam-2.76.0/apache_beam/io/external/xlang_debeziumio_it_test.py +144 -0
- apache_beam-2.76.0/apache_beam/io/external/xlang_jmsio_it_test.py +383 -0
- apache_beam-2.76.0/apache_beam/io/external/xlang_mqttio_it_test.py +262 -0
- apache_beam-2.76.0/apache_beam/io/filesystemio.py +305 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery.py +3258 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery_change_history.py +1350 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery_file_loads.py +1408 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery_file_loads_test.py +1636 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery_schema_tools_test.py +517 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery_test.py +2916 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigquery_write_it_test.py +676 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigtableio_it_test.py +416 -0
- apache_beam-2.76.0/apache_beam/io/gcp/bigtableio_test.py +452 -0
- apache_beam-2.76.0/apache_beam/io/gcp/gcsfilesystem_test.py +391 -0
- apache_beam-2.76.0/apache_beam/io/gcp/gcsio.py +756 -0
- apache_beam-2.76.0/apache_beam/io/gcp/gcsio_integration_test.py +332 -0
- apache_beam-2.76.0/apache_beam/io/gcp/gcsio_test.py +964 -0
- apache_beam-2.76.0/apache_beam/io/gcp/internal/clients/bigquery/bigquery_v2_client.py +1419 -0
- apache_beam-2.76.0/apache_beam/io/gcp/internal/clients/bigquery/bigquery_v2_messages.py +11167 -0
- apache_beam-2.76.0/apache_beam/io/gcp/pubsub_integration_test.py +411 -0
- apache_beam-2.76.0/apache_beam/io/gcp/pubsub_test.py +1241 -0
- apache_beam-2.76.0/apache_beam/io/iobase.py +1934 -0
- apache_beam-2.76.0/apache_beam/io/iobase_test.py +265 -0
- apache_beam-2.76.0/apache_beam/io/requestresponse.py +849 -0
- apache_beam-2.76.0/apache_beam/io/requestresponse_test.py +183 -0
- apache_beam-2.76.0/apache_beam/io/unbounded_source.py +1136 -0
- apache_beam-2.76.0/apache_beam/io/unbounded_source_test.py +1252 -0
- apache_beam-2.76.0/apache_beam/io/watch.py +901 -0
- apache_beam-2.76.0/apache_beam/io/watch_test.py +858 -0
- apache_beam-2.76.0/apache_beam/ml/anomaly/specifiable.py +443 -0
- apache_beam-2.76.0/apache_beam/ml/anomaly/univariate/mean_test.py +161 -0
- apache_beam-2.76.0/apache_beam/ml/anomaly/univariate/perf_test.py +85 -0
- apache_beam-2.76.0/apache_beam/ml/anomaly/univariate/quantile_test.py +162 -0
- apache_beam-2.76.0/apache_beam/ml/anomaly/univariate/stdev_test.py +157 -0
- apache_beam-2.76.0/apache_beam/ml/inference/base.py +2183 -0
- apache_beam-2.76.0/apache_beam/ml/inference/base_test.py +2437 -0
- apache_beam-2.76.0/apache_beam/ml/inference/pytorch_inference_test.py +1021 -0
- apache_beam-2.76.0/apache_beam/ml/inference/sklearn_inference_test.py +625 -0
- apache_beam-2.76.0/apache_beam/ml/inference/tensorflow_inference_test.py +448 -0
- apache_beam-2.76.0/apache_beam/ml/inference/tensorrt_inference_test.py +472 -0
- apache_beam-2.76.0/apache_beam/ml/inference/vllm_inference.py +655 -0
- apache_beam-2.76.0/apache_beam/ml/inference/vllm_inference_test.py +157 -0
- apache_beam-2.76.0/apache_beam/ml/rag/ingestion/milvus_search.py +351 -0
- apache_beam-2.76.0/apache_beam/ml/rag/ingestion/milvus_search_test.py +158 -0
- apache_beam-2.76.0/apache_beam/options/pipeline_options.py +2356 -0
- apache_beam-2.76.0/apache_beam/options/pipeline_options_test.py +1126 -0
- apache_beam-2.76.0/apache_beam/options/pipeline_options_validator.py +460 -0
- apache_beam-2.76.0/apache_beam/portability/api/__init__.py +56 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/__init__.py +21 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_fn_api_pb2.pyi +2770 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_fn_api_pb2_grpc.py +526 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_provision_api_pb2.pyi +151 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/interactive/v1/beam_interactive_api_pb2.pyi +92 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/interactive/v1/beam_interactive_api_pb2_grpc.py +74 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/__init__.py +23 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_artifact_api_pb2.pyi +475 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_expansion_api_pb2.pyi +243 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_job_api_pb2.pyi +745 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/__init__.py +33 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/beam_runner_api_pb2.pyi +4594 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/endpoints_pb2.pyi +75 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2.py +89 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2.pyi +343 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2_urns.py +40 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/metrics_pb2.pyi +1052 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2.py +90 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2.pyi +830 -0
- apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2_urns.py +19 -0
- apache_beam-2.76.0/apache_beam/portability/api/standard_coders.yaml +659 -0
- apache_beam-2.76.0/apache_beam/portability/common_urns.py +96 -0
- apache_beam-2.76.0/apache_beam/runners/common.pxd +184 -0
- apache_beam-2.76.0/apache_beam/runners/common.py +1955 -0
- apache_beam-2.76.0/apache_beam/runners/common_test.py +649 -0
- apache_beam-2.76.0/apache_beam/runners/dataflow/internal/apiclient.py +1273 -0
- apache_beam-2.76.0/apache_beam/runners/dataflow/internal/apiclient_test.py +1920 -0
- apache_beam-2.76.0/apache_beam/runners/dataflow/internal/names.py +40 -0
- apache_beam-2.76.0/apache_beam/runners/direct/transform_evaluator.py +1254 -0
- apache_beam-2.76.0/apache_beam/runners/interactive/dataproc/dataproc_cluster_manager.py +366 -0
- apache_beam-2.76.0/apache_beam/runners/interactive/interactive_beam_test.py +1066 -0
- apache_beam-2.76.0/apache_beam/runners/interactive/recording_manager.py +980 -0
- apache_beam-2.76.0/apache_beam/runners/interactive/recording_manager_test.py +1237 -0
- apache_beam-2.76.0/apache_beam/runners/portability/beam_plugins_it_test.py +70 -0
- apache_beam-2.76.0/apache_beam/runners/portability/fn_api_runner/fn_runner_test.py +2721 -0
- apache_beam-2.76.0/apache_beam/runners/portability/job_server.py +183 -0
- apache_beam-2.76.0/apache_beam/runners/portability/job_server_test.py +82 -0
- apache_beam-2.76.0/apache_beam/runners/portability/prism_runner.py +506 -0
- apache_beam-2.76.0/apache_beam/runners/portability/sdk_container_builder.py +373 -0
- apache_beam-2.76.0/apache_beam/runners/portability/sdk_container_builder_test.py +168 -0
- apache_beam-2.76.0/apache_beam/runners/portability/spark_runner.py +129 -0
- apache_beam-2.76.0/apache_beam/runners/portability/spark_runner_test.py +209 -0
- apache_beam-2.76.0/apache_beam/runners/worker/bundle_processor.py +2231 -0
- apache_beam-2.76.0/apache_beam/runners/worker/sdk_worker.py +1484 -0
- apache_beam-2.76.0/apache_beam/runners/worker/sdk_worker_main.py +425 -0
- apache_beam-2.76.0/apache_beam/runners/worker/sdk_worker_main_test.py +300 -0
- apache_beam-2.76.0/apache_beam/runners/worker/sdk_worker_test.py +787 -0
- apache_beam-2.76.0/apache_beam/runners/worker/statesampler_fast.pyx +253 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/cloudml/criteo_tft/criteo.py +162 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/cloudml/criteo_tft/criteo_test.py +93 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/inference/mltransform_image_embedding_benchmark.py +128 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/inference/mltransform_one_hot_encoding_benchmark.py +150 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/inference/mltransform_text_embedding_benchmark.py +117 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/inference/pytorch_image_captioning_benchmarks.py +42 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/inference/pytorch_image_object_detection_benchmarks.py +42 -0
- apache_beam-2.76.0/apache_beam/testing/benchmarks/inference/pytorch_imagenet_rightfit_benchmarks.py +42 -0
- apache_beam-2.76.0/apache_beam/testing/load_tests/dataflow_cost_benchmark.py +461 -0
- apache_beam-2.76.0/apache_beam/testing/util.py +495 -0
- apache_beam-2.76.0/apache_beam/testing/util_test.py +352 -0
- apache_beam-2.76.0/apache_beam/transforms/async_dofn.py +557 -0
- apache_beam-2.76.0/apache_beam/transforms/async_dofn_test.py +585 -0
- apache_beam-2.76.0/apache_beam/transforms/external.py +1304 -0
- apache_beam-2.76.0/apache_beam/transforms/managed.py +231 -0
- apache_beam-2.76.0/apache_beam/transforms/managed_iceberg_it_test.py +94 -0
- apache_beam-2.76.0/apache_beam/transforms/stats_test.py +687 -0
- apache_beam-2.76.0/apache_beam/transforms/userstate_test.py +1298 -0
- apache_beam-2.76.0/apache_beam/transforms/util_test.py +3143 -0
- apache_beam-2.76.0/apache_beam/transforms/xlang/io.py +440 -0
- apache_beam-2.76.0/apache_beam/typehints/schemas.py +1507 -0
- apache_beam-2.76.0/apache_beam/typehints/schemas_test.py +969 -0
- apache_beam-2.76.0/apache_beam/typehints/typehints.py +1640 -0
- apache_beam-2.76.0/apache_beam/typehints/typehints_test.py +2017 -0
- apache_beam-2.76.0/apache_beam/utils/subprocess_server.py +674 -0
- apache_beam-2.76.0/apache_beam/utils/subprocess_server_test.py +613 -0
- apache_beam-2.76.0/apache_beam/utils/timestamp.py +627 -0
- apache_beam-2.76.0/apache_beam/utils/timestamp_test.py +428 -0
- apache_beam-2.76.0/apache_beam/version.py +20 -0
- apache_beam-2.76.0/apache_beam/yaml/integration_tests.py +1039 -0
- apache_beam-2.76.0/apache_beam/yaml/standard_io.yaml +506 -0
- apache_beam-2.76.0/apache_beam/yaml/yaml_io.py +911 -0
- apache_beam-2.76.0/apache_beam/yaml/yaml_io_test.py +812 -0
- apache_beam-2.76.0/apache_beam.egg-info/PKG-INFO +430 -0
- apache_beam-2.76.0/apache_beam.egg-info/SOURCES.txt +1426 -0
- apache_beam-2.76.0/apache_beam.egg-info/requires.txt +293 -0
- apache_beam-2.76.0/pyproject.toml +216 -0
- apache_beam-2.76.0/setup.py +702 -0
- apache_beam-2.75.0/PKG-INFO +0 -442
- apache_beam-2.75.0/apache_beam/coders/row_coder_test.py +0 -462
- apache_beam-2.75.0/apache_beam/dataframe/io.py +0 -900
- apache_beam-2.75.0/apache_beam/dataframe/io_test.py +0 -536
- apache_beam-2.75.0/apache_beam/examples/complete/autocomplete.py +0 -92
- apache_beam-2.75.0/apache_beam/examples/complete/game/game_stats.py +0 -409
- apache_beam-2.75.0/apache_beam/examples/complete/game/hourly_team_score.py +0 -320
- apache_beam-2.75.0/apache_beam/examples/complete/game/leader_board.py +0 -374
- apache_beam-2.75.0/apache_beam/examples/complete/game/user_score.py +0 -193
- apache_beam-2.75.0/apache_beam/examples/complete/top_wikipedia_sessions.py +0 -168
- apache_beam-2.75.0/apache_beam/examples/cookbook/bigtableio_it_test.py +0 -208
- apache_beam-2.75.0/apache_beam/examples/inference/pytorch_image_classification_with_side_inputs.py +0 -217
- apache_beam-2.75.0/apache_beam/examples/inference/vllm_text_completion.py +0 -209
- apache_beam-2.75.0/apache_beam/examples/ml_transform/mltransform_one_hot_encoding_test.py +0 -259
- apache_beam-2.75.0/apache_beam/examples/snippets/transforms/elementwise/enrichment_test.py +0 -419
- apache_beam-2.75.0/apache_beam/examples/wordcount_debugging.py +0 -193
- apache_beam-2.75.0/apache_beam/examples/wordcount_with_metrics.py +0 -155
- apache_beam-2.75.0/apache_beam/io/components/rate_limiter.py +0 -254
- apache_beam-2.75.0/apache_beam/io/components/rate_limiter_test.py +0 -143
- apache_beam-2.75.0/apache_beam/io/external/xlang_debeziumio_it_test.py +0 -144
- apache_beam-2.75.0/apache_beam/io/external/xlang_mqttio_it_test.py +0 -268
- apache_beam-2.75.0/apache_beam/io/filesystemio.py +0 -306
- apache_beam-2.75.0/apache_beam/io/gcp/__init__.py +0 -36
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery.py +0 -3238
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery_change_history.py +0 -1346
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery_file_loads.py +0 -1353
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery_file_loads_test.py +0 -1485
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery_schema_tools_test.py +0 -451
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery_test.py +0 -2865
- apache_beam-2.75.0/apache_beam/io/gcp/bigquery_write_it_test.py +0 -607
- apache_beam-2.75.0/apache_beam/io/gcp/bigtableio_it_test.py +0 -416
- apache_beam-2.75.0/apache_beam/io/gcp/bigtableio_test.py +0 -397
- apache_beam-2.75.0/apache_beam/io/gcp/gcsfilesystem_test.py +0 -389
- apache_beam-2.75.0/apache_beam/io/gcp/gcsio.py +0 -745
- apache_beam-2.75.0/apache_beam/io/gcp/gcsio_integration_test.py +0 -333
- apache_beam-2.75.0/apache_beam/io/gcp/gcsio_test.py +0 -924
- apache_beam-2.75.0/apache_beam/io/gcp/internal/clients/bigquery/bigquery_v2_client.py +0 -1058
- apache_beam-2.75.0/apache_beam/io/gcp/internal/clients/bigquery/bigquery_v2_messages.py +0 -5356
- apache_beam-2.75.0/apache_beam/io/gcp/pubsub_integration_test.py +0 -401
- apache_beam-2.75.0/apache_beam/io/gcp/pubsub_test.py +0 -1176
- apache_beam-2.75.0/apache_beam/io/iobase.py +0 -1922
- apache_beam-2.75.0/apache_beam/io/iobase_test.py +0 -224
- apache_beam-2.75.0/apache_beam/io/requestresponse.py +0 -848
- apache_beam-2.75.0/apache_beam/io/requestresponse_test.py +0 -173
- apache_beam-2.75.0/apache_beam/ml/anomaly/specifiable.py +0 -443
- apache_beam-2.75.0/apache_beam/ml/anomaly/univariate/mean_test.py +0 -161
- apache_beam-2.75.0/apache_beam/ml/anomaly/univariate/perf_test.py +0 -82
- apache_beam-2.75.0/apache_beam/ml/anomaly/univariate/quantile_test.py +0 -162
- apache_beam-2.75.0/apache_beam/ml/anomaly/univariate/stdev_test.py +0 -157
- apache_beam-2.75.0/apache_beam/ml/inference/base.py +0 -2184
- apache_beam-2.75.0/apache_beam/ml/inference/base_test.py +0 -2437
- apache_beam-2.75.0/apache_beam/ml/inference/pytorch_inference_test.py +0 -1020
- apache_beam-2.75.0/apache_beam/ml/inference/sklearn_inference_test.py +0 -625
- apache_beam-2.75.0/apache_beam/ml/inference/tensorflow_inference_test.py +0 -448
- apache_beam-2.75.0/apache_beam/ml/inference/tensorrt_inference_test.py +0 -469
- apache_beam-2.75.0/apache_beam/ml/inference/vllm_inference.py +0 -404
- apache_beam-2.75.0/apache_beam/ml/rag/ingestion/milvus_search.py +0 -348
- apache_beam-2.75.0/apache_beam/ml/rag/ingestion/milvus_search_test.py +0 -123
- apache_beam-2.75.0/apache_beam/options/pipeline_options.py +0 -2341
- apache_beam-2.75.0/apache_beam/options/pipeline_options_test.py +0 -1101
- apache_beam-2.75.0/apache_beam/options/pipeline_options_validator.py +0 -452
- apache_beam-2.75.0/apache_beam/portability/api/__init__.py +0 -56
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/__init__.py +0 -21
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_fn_api_pb2.pyi +0 -2694
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_fn_api_pb2_grpc.py +0 -505
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_provision_api_pb2.pyi +0 -151
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/interactive/v1/beam_interactive_api_pb2.pyi +0 -88
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/interactive/v1/beam_interactive_api_pb2_grpc.py +0 -68
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/__init__.py +0 -23
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_artifact_api_pb2.pyi +0 -456
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_expansion_api_pb2.pyi +0 -225
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_job_api_pb2.pyi +0 -690
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/__init__.py +0 -33
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/beam_runner_api_pb2.pyi +0 -4477
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/endpoints_pb2.pyi +0 -70
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2.py +0 -87
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2.pyi +0 -305
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2_urns.py +0 -39
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/metrics_pb2.pyi +0 -914
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2.py +0 -88
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2.pyi +0 -671
- apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2_urns.py +0 -18
- apache_beam-2.75.0/apache_beam/portability/api/standard_coders.yaml +0 -628
- apache_beam-2.75.0/apache_beam/portability/common_urns.py +0 -95
- apache_beam-2.75.0/apache_beam/runners/common.pxd +0 -183
- apache_beam-2.75.0/apache_beam/runners/common.py +0 -1920
- apache_beam-2.75.0/apache_beam/runners/common_test.py +0 -591
- apache_beam-2.75.0/apache_beam/runners/dataflow/internal/apiclient.py +0 -1269
- apache_beam-2.75.0/apache_beam/runners/dataflow/internal/apiclient_test.py +0 -1898
- apache_beam-2.75.0/apache_beam/runners/dataflow/internal/names.py +0 -40
- apache_beam-2.75.0/apache_beam/runners/direct/transform_evaluator.py +0 -1197
- apache_beam-2.75.0/apache_beam/runners/interactive/dataproc/dataproc_cluster_manager.py +0 -365
- apache_beam-2.75.0/apache_beam/runners/interactive/interactive_beam_test.py +0 -1066
- apache_beam-2.75.0/apache_beam/runners/interactive/recording_manager.py +0 -945
- apache_beam-2.75.0/apache_beam/runners/interactive/recording_manager_test.py +0 -1070
- apache_beam-2.75.0/apache_beam/runners/portability/fn_api_runner/fn_runner_test.py +0 -2692
- apache_beam-2.75.0/apache_beam/runners/portability/job_server.py +0 -183
- apache_beam-2.75.0/apache_beam/runners/portability/job_server_test.py +0 -82
- apache_beam-2.75.0/apache_beam/runners/portability/prism_runner.py +0 -503
- apache_beam-2.75.0/apache_beam/runners/portability/sdk_container_builder.py +0 -373
- apache_beam-2.75.0/apache_beam/runners/portability/sdk_container_builder_test.py +0 -127
- apache_beam-2.75.0/apache_beam/runners/portability/spark_runner.py +0 -118
- apache_beam-2.75.0/apache_beam/runners/portability/spark_runner_test.py +0 -203
- apache_beam-2.75.0/apache_beam/runners/worker/bundle_processor.py +0 -2216
- apache_beam-2.75.0/apache_beam/runners/worker/sdk_worker.py +0 -1476
- apache_beam-2.75.0/apache_beam/runners/worker/sdk_worker_main.py +0 -413
- apache_beam-2.75.0/apache_beam/runners/worker/sdk_worker_main_test.py +0 -251
- apache_beam-2.75.0/apache_beam/runners/worker/sdk_worker_test.py +0 -749
- apache_beam-2.75.0/apache_beam/runners/worker/statesampler_fast.pyx +0 -248
- apache_beam-2.75.0/apache_beam/testing/benchmarks/cloudml/criteo_tft/criteo.py +0 -158
- apache_beam-2.75.0/apache_beam/testing/benchmarks/inference/mltransform_one_hot_encoding_benchmark.py +0 -197
- apache_beam-2.75.0/apache_beam/testing/load_tests/dataflow_cost_benchmark.py +0 -332
- apache_beam-2.75.0/apache_beam/testing/util.py +0 -452
- apache_beam-2.75.0/apache_beam/testing/util_test.py +0 -308
- apache_beam-2.75.0/apache_beam/transforms/async_dofn.py +0 -555
- apache_beam-2.75.0/apache_beam/transforms/async_dofn_test.py +0 -527
- apache_beam-2.75.0/apache_beam/transforms/external.py +0 -1303
- apache_beam-2.75.0/apache_beam/transforms/managed.py +0 -229
- apache_beam-2.75.0/apache_beam/transforms/managed_iceberg_it_test.py +0 -92
- apache_beam-2.75.0/apache_beam/transforms/stats_test.py +0 -673
- apache_beam-2.75.0/apache_beam/transforms/userstate_test.py +0 -1229
- apache_beam-2.75.0/apache_beam/transforms/util_test.py +0 -3094
- apache_beam-2.75.0/apache_beam/transforms/xlang/io.py +0 -288
- apache_beam-2.75.0/apache_beam/typehints/schemas.py +0 -1403
- apache_beam-2.75.0/apache_beam/typehints/schemas_test.py +0 -859
- apache_beam-2.75.0/apache_beam/typehints/typehints.py +0 -1639
- apache_beam-2.75.0/apache_beam/typehints/typehints_test.py +0 -1999
- apache_beam-2.75.0/apache_beam/utils/subprocess_server.py +0 -663
- apache_beam-2.75.0/apache_beam/utils/subprocess_server_test.py +0 -603
- apache_beam-2.75.0/apache_beam/utils/timestamp.py +0 -424
- apache_beam-2.75.0/apache_beam/utils/timestamp_test.py +0 -251
- apache_beam-2.75.0/apache_beam/version.py +0 -20
- apache_beam-2.75.0/apache_beam/yaml/integration_tests.py +0 -952
- apache_beam-2.75.0/apache_beam/yaml/standard_io.yaml +0 -472
- apache_beam-2.75.0/apache_beam/yaml/yaml_io.py +0 -843
- apache_beam-2.75.0/apache_beam/yaml/yaml_io_test.py +0 -769
- apache_beam-2.75.0/apache_beam.egg-info/PKG-INFO +0 -442
- apache_beam-2.75.0/apache_beam.egg-info/SOURCES.txt +0 -1406
- apache_beam-2.75.0/apache_beam.egg-info/requires.txt +0 -309
- apache_beam-2.75.0/pyproject.toml +0 -218
- apache_beam-2.75.0/setup.py +0 -712
- {apache_beam-2.75.0 → apache_beam-2.76.0}/MANIFEST.in +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/README.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/avro_record.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coder_impl.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coder_impl.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coder_impl_row_encoders.pyx +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coders.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coders_property_based_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coders_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/coders_test_common.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/fast_coders_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/observable.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/observable_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/proto2_coder_test_messages_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/row_coder.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/slow_coders_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/slow_stream.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/standard_coders_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/stream.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/stream.pyx +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/stream_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/typecoders.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/coders/typecoders_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/convert.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/convert_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/doctests.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/doctests_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/expressions.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/expressions_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/frame_base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/frame_base_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/frames.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/frames_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/io_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/pandas_docs_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/pandas_doctests_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/pandas_top_level_functions.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/partitionings.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/partitionings_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/schemas.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/schemas_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/transforms.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/dataframe/transforms_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/error.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/avro_nyc_trips.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/avro_nyc_trips_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/avro_nyc_trips_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/california_housing_clustering.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/autocomplete_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/autocomplete_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/distribopt.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/distribopt_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/estimate_pi.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/estimate_pi_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/estimate_pi_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/game_stats_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/game_stats_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/hourly_team_score_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/hourly_team_score_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/leader_board_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/leader_board_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/user_score_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/game/user_score_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/juliaset/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/juliaset/juliaset.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/juliaset/juliaset_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/juliaset/juliaset_test_it.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/juliaset_main.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/juliaset/setup.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/tfidf.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/tfidf_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/tfidf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/top_wikipedia_sessions_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/complete/top_wikipedia_sessions_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_schema.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_side_input.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_side_input_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_side_input_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_tornadoes.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_tornadoes_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/bigquery_tornadoes_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/coders.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/coders_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/coders_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/combiners_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/custom_ptransform.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/custom_ptransform_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/custom_ptransform_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/datastore_wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/datastore_wordcount_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/filters.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/filters_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/group_with_coder.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/group_with_coder_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/mergecontacts.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/mergecontacts_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/multiple_output_pardo.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/multiple_output_pardo_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/ordered_window_elements/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/ordered_window_elements/batch.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/ordered_window_elements/batch_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/ordered_window_elements/streaming.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/cookbook/ordered_window_elements/streaming_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/flight_delays.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/flight_delays_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/taxiride.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/taxiride_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/taxiride_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/dataframe/wordcount_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/fastavro_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/flink/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/flink/flink_streaming_impulse.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/gemini_image_generation.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/gemini_text_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/huggingface_language_modeling.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/huggingface_question_answering.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/milk_quality_prediction_windowing.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/onnx_sentiment_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/pytorch_image_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/pytorch_image_segmentation.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/pytorch_language_modeling.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/pytorch_model_per_key_image_segmentation.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/pytorch_sentiment.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/rate_limiter_vertex_ai.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/run_inference_side_inputs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/config.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/main.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/pipeline/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/pipeline/options.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/pipeline/transformations.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/runinference_metrics/setup.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/sklearn_japanese_housing_regression.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/sklearn_mnist_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/table_row_batch_example.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/table_row_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/table_row_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/table_row_inference_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tensorflow_imagenet_segmentation.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tensorflow_mnist_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tensorflow_mnist_with_weights.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tensorrt_object_detection.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tensorrt_text_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tfx_bsl/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tfx_bsl/build_tensorflow_model.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tfx_bsl/tensorflow_image_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/tfx_bsl/tfx_bsl_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/vertex_ai_image_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/vertex_ai_llm_text_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/vllm_gemma_batch.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/inference/xgboost_iris_classification.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/kafkataxi/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/kafkataxi/kafka_taxi.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/matrix_power.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/matrix_power_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/ml_transform_basic.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/ml_transform_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/mltransform_generate_vocab.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/mltransform_generate_vocab_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/mltransform_one_hot_encoding.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/ml_transform/vocab_tfidf_processing.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/online_clustering.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/per_entity_training.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/rate_limiter_simple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/sinks/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/sinks/generate_event.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/sinks/test_periodicimpulse.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/sinks/test_write_bounded.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/sinks/test_write_unbounded.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/snippets.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/snippets_examples_wordcount_debugging.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/snippets_examples_wordcount_minimal.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/snippets_examples_wordcount_wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/snippets_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/approximatequantiles.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/approximatequantiles_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/approximateunique.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/approximateunique_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/batchelements.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/batchelements_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/cogroupbykey.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/cogroupbykey_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_combinefn.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_side_inputs_dict.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_side_inputs_iter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_side_inputs_singleton.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineglobally_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_combinefn.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_side_inputs_dict.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_side_inputs_iter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_side_inputs_singleton.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_simple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combineperkey_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_combinefn.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_side_inputs_dict.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_side_inputs_iter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_side_inputs_singleton.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_simple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/combinevalues_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/count_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/count_per_element.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/count_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/count_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/distinct.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/distinct_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_attr.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_attr_expr.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_expr.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_expr_aggregate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_global_aggregate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_simple_aggregate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupby_two_exprs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupbykey.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupbykey_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupintobatches.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/groupintobatches_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/latest_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/latest_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/latest_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/max_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/max_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/max_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/mean_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/mean_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/mean_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/min_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/min_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/min_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/sample_fixed_size_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/sample_fixed_size_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/sample_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/sum_globally.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/sum_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/sum_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/tolist.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/tolist_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_largest.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_largest_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_of.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_smallest.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_smallest_per_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/aggregation/top_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/enrichment.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_side_inputs_dict.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_side_inputs_iter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_side_inputs_singleton.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/filter_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_generator.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_nofunction.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_side_inputs_dict.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_side_inputs_iter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_side_inputs_singleton.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_simple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/flatmap_tuple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/keys.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/keys_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/kvswap.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/kvswap_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_context.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_side_inputs_dict.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_side_inputs_iter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_side_inputs_singleton.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_simple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/map_tuple.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/mltransform.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/mltransform_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/pardo_dofn.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/pardo_dofn_methods.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/pardo_dofn_params.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/pardo_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/partition_function.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/partition_lambda.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/partition_multiple_arguments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/partition_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_all_matches.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_find.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_find_all.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_find_kv.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_matches.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_matches_kv.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_replace_all.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_replace_first.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_split.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/regex_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/runinference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/runinference_sklearn_keyed_model_handler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/runinference_sklearn_unkeyed_model_handler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/runinference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/tostring_element.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/tostring_iterables.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/tostring_kvs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/tostring_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/values.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/values_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/withtimestamps.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/withtimestamps_event_time.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/withtimestamps_logical_clock.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/withtimestamps_processing_time.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/elementwise/withtimestamps_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/create.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/create_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/flatten.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/flatten_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/window.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/transforms/other/window_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/snippets/util_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/sql_taxi.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/streaming_wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/streaming_wordcount_debugging.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/streaming_wordcount_debugging_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/streaming_wordcount_debugging_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/streaming_wordcount_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/windowed_wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_dataframe.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_debugging_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_minimal.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_minimal_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_xlang.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/examples/wordcount_xlang_sql.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/azure/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/azure/auth.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/cloudpickle/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/cloudpickle/cloudpickle.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/cloudpickle/cloudpickle_fast.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/cloudpickle_pickler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/cloudpickle_pickler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/code_object_pickler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/code_object_pickler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/dill_pickler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/gcp/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/gcp/auth.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/gcp/auth_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/gcp/json_value.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/gcp/json_value_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/http_client.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/http_client_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/metrics/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/metrics/metric.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/module_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/pickler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/pickler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/set_pickler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/set_pickler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_class_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_function_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_global_variable_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_lambda_variable_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_local_variable_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_local_variable_removed.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_nested_function_2_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_1_nested_function_added.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_2_modified.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_3.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_3_modified.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/test_data/module_with_default_argument.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/internal/util_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/avroio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/avroio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/clients/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/clients/s3/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/clients/s3/boto3_client.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/clients/s3/client_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/clients/s3/fake_client.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/clients/s3/messages.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/s3filesystem.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/s3filesystem_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/s3io.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/aws/s3io_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/azure/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/azure/blobstoragefilesystem.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/azure/blobstoragefilesystem_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/azure/blobstorageio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/azure/blobstorageio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/components/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/components/adaptive_throttler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/components/adaptive_throttler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/components/util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/concat_source.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/concat_source_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/debezium.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/gcp/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/gcp/pubsub.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/generate_sequence.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/generate_sequence_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/kafka.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/snowflake.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_bigqueryio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_jdbcio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_kafkaio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_kafkaio_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_kinesisio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_parquetio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/external/xlang_snowflakeio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filebasedio_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filebasedsink.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filebasedsink_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filebasedsource.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filebasedsource_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/fileio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/fileio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filesystem.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filesystem_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filesystemio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filesystems.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/filesystems_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/flink/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/flink/flink_streaming_impulse_source.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/flink/flink_streaming_impulse_source_test.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/datastore → apache_beam-2.76.0/apache_beam/io/gcp}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/big_query_query_to_table_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/big_query_query_to_table_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_avro_tools.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_avro_tools_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_biglake_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_change_history_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_change_history_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_geography_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_io_metadata.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_io_metadata_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_io_read_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_io_read_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_json_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_read_internal.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_read_internal_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_read_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_read_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_schema_tools.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_tools.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_tools_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigquery_write_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/bigtableio.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/datastore/v1new → apache_beam-2.76.0/apache_beam/io/gcp/datastore}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/experimental → apache_beam-2.76.0/apache_beam/io/gcp/datastore/v1new}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/datastore_write_it_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/datastore_write_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/datastoreio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/datastoreio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/helper.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/query_splitter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/query_splitter_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/rampup_throttling_fn.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/rampup_throttling_fn_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/types.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/types_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/datastore/v1new/util_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/dicomclient.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/dicomio.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/healthcare → apache_beam-2.76.0/apache_beam/io/gcp/experimental}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/experimental/spannerio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/experimental/spannerio_read_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/experimental/spannerio_read_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/experimental/spannerio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/experimental/spannerio_write_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/experimental/spannerio_write_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/gce_metadata_util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/gcsfilesystem.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/gcsfilesystem_integration_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/gcsio_retry.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/gcsio_retry_test.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/internal → apache_beam-2.76.0/apache_beam/io/gcp/healthcare}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/healthcare/dicomclient.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/healthcare/dicomio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/healthcare/dicomio_integration_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/healthcare/dicomio_test.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/internal/clients → apache_beam-2.76.0/apache_beam/io/gcp/internal}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/io/gcp/tests → apache_beam-2.76.0/apache_beam/io/gcp/internal/clients}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/internal/clients/bigquery/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/pubsub.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/pubsub_io_perf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/pubsub_it_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/resource_identifiers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/spanner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/spanner_wrapper.py +0 -0
- {apache_beam-2.75.0/apache_beam/ml/anomaly → apache_beam-2.76.0/apache_beam/io/gcp/tests}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/bigquery_matcher.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/bigquery_matcher_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/pubsub_matcher.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/pubsub_matcher_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/hadoopfilesystem.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/hadoopfilesystem_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/iobase_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/jdbc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/kafka.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/kinesis.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/localfilesystem.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/localfilesystem_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/mongodbio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/mongodbio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/mongodbio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/parquetio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/parquetio_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/parquetio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/range_trackers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/range_trackers_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/requestresponse_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/restriction_trackers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/restriction_trackers_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/snowflake.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/source_test_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/source_test_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/sources_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/textio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/textio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/tfrecordio.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/tfrecordio_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/watermark_estimators.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/io/watermark_estimators_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/cells.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/cells.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/cells_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/execution.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/execution.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/execution_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/metric.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/metric_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/metricbase.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/monitoring_infos.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/metrics/monitoring_infos_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/ml/anomaly/univariate → apache_beam-2.76.0/apache_beam/ml/anomaly}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/aggregations.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/aggregations_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/base_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/iqr.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/iqr_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/offline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/pyod_adapter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/pyod_adapter_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/robust_zscore.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/robust_zscore_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/zscore.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/detectors/zscore_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/specifiable_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/thresholds.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/thresholds_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/transforms.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/transforms_test.py +0 -0
- {apache_beam-2.75.0/apache_beam/ml/transforms → apache_beam-2.76.0/apache_beam/ml/anomaly/univariate}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/mad.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/mad_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/mean.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/median.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/median_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/quantile.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/anomaly/univariate/stdev.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/cloud_dlp.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/cloud_dlp_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/cloud_dlp_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/naturallanguageml.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/naturallanguageml_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/naturallanguageml_test_it.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/recommendations_ai.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/recommendations_ai_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/recommendations_ai_test_it.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/videointelligenceml.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/videointelligenceml_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/videointelligenceml_test_it.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/visionml.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/visionml_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/gcp/visionml_test_it.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/agent_development_kit.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/agent_development_kit_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/anthropic_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/anthropic_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/anthropic_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/gemini_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/gemini_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/gemini_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/huggingface_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/huggingface_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/huggingface_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/model_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/model_manager_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/model_manager_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/onnx_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/onnx_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/onnx_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/pytorch_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/pytorch_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/sklearn_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/sklearn_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/tensorflow_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/tensorflow_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/tensorrt_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/vertex_ai_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/vertex_ai_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/vertex_ai_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/xgboost_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/xgboost_inference_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/inference/xgboost_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/chunking/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/chunking/base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/chunking/base_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/chunking/langchain.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/chunking/langchain_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/base_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/huggingface.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/huggingface_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/vertex_ai.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/embeddings/vertex_ai_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/enrichment/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/enrichment/bigquery_vector_search.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/enrichment/bigquery_vector_search_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/enrichment/milvus_search.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/enrichment/milvus_search_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/enrichment/milvus_search_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/alloydb.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/alloydb_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/base_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/bigquery.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/bigquery_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/cloudsql.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/cloudsql_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/jdbc_common.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/milvus_search_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/mysql.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/mysql_common.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/postgres.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/postgres_common.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/postgres_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/qdrant.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/qdrant_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/qdrant_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/spanner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/spanner_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/ingestion/test_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/test_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/types.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/rag/utils.py +0 -0
- {apache_beam-2.75.0/apache_beam/ml/ts → apache_beam-2.76.0/apache_beam/ml/transforms}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/base.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/base_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/huggingface.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/huggingface_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/open_ai.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/open_ai_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/tensorflow_hub.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/tensorflow_hub_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/vertex_ai.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/embeddings/vertex_ai_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/handlers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/handlers_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/tft.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/tft_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/ml/transforms/utils.py +0 -0
- {apache_beam-2.75.0/apache_beam/options → apache_beam-2.76.0/apache_beam/ml/ts}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org → apache_beam-2.76.0/apache_beam/options}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/options/pipeline_options_context.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/options/pipeline_options_context_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/options/pipeline_options_validator_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/options/value_provider.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/options/value_provider_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache → apache_beam-2.76.0/apache_beam/portability/api/org}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam → apache_beam-2.76.0/apache_beam/portability/api/org/apache}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model → apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/fn_execution → apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model}/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/interactive → apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/fn_execution}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_fn_api_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_fn_api_pb2_urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_provision_api_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/fn_execution/v1/beam_provision_api_pb2_grpc.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/job_management → apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/interactive}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/interactive/v1/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/interactive/v1/beam_interactive_api_pb2.py +0 -0
- {apache_beam-2.75.0/apache_beam/portability/api/org/apache/beam/model/pipeline → apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/job_management}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_artifact_api_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_artifact_api_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_artifact_api_pb2_urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_expansion_api_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_expansion_api_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_job_api_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/job_management/v1/beam_job_api_pb2_grpc.py +0 -0
- {apache_beam-2.75.0/apache_beam/runners/dask → apache_beam-2.76.0/apache_beam/portability/api/org/apache/beam/model/pipeline}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/beam_runner_api_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/beam_runner_api_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/beam_runner_api_pb2_urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/endpoints_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/endpoints_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/external_transforms_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/metrics_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/metrics_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/metrics_pb2_urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/schema_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/standard_window_fns_pb2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/standard_window_fns_pb2.pyi +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/standard_window_fns_pb2_grpc.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/api/org/apache/beam/model/pipeline/v1/standard_window_fns_pb2_urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/python_urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/portability/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/programming_guide_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/pvalue.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/pvalue_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/py.typed +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/__init__.py +0 -0
- {apache_beam-2.75.0/apache_beam/runners/dataflow/internal → apache_beam-2.76.0/apache_beam/runners/dask}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dask/dask_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dask/dask_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dask/overrides.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dask/transform_evaluator.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_exercise_metrics_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_exercise_metrics_pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_exercise_streaming_metrics_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_exercise_streaming_metrics_pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_job_service.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_job_service_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_metrics.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_metrics_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/dataflow_runner_test.py +0 -0
- {apache_beam-2.75.0/apache_beam/runners/dataflow/internal/clients → apache_beam-2.76.0/apache_beam/runners/dataflow/internal}/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/ptransform_overrides.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/template_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/dataflow/test_dataflow_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/bundle_factory.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/clock.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/consumer_tracking_pipeline_visitor.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/consumer_tracking_pipeline_visitor_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/direct_metrics.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/direct_metrics_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/direct_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/direct_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/direct_userstate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/evaluation_context.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/executor.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/sdf_direct_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/sdf_direct_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/test_direct_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/test_stream_impl.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/direct/watermark_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/augmented_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/augmented_pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/background_caching_job.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/background_caching_job_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/cache_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/cache_manager_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/cacheable.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/expression_cache.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/expression_cache_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/read_cache.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/read_cache_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/reify.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/streaming_cache.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/streaming_cache_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/write_cache.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/caching/write_cache_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/dataproc/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/dataproc/dataproc_cluster_manager_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/dataproc/types.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/display_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/interactive_pipeline_graph.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/pcoll_visualization.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/pcoll_visualization_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/pipeline_graph.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/pipeline_graph_renderer.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/display/pipeline_graph_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/interactive_beam.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/interactive_environment.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/interactive_environment_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/interactive_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/interactive_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/messaging/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/messaging/interactive_environment_inspector.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/messaging/interactive_environment_inspector_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/non_interactive_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/options/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/options/capture_control.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/options/capture_control_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/options/capture_limiters.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/options/capture_limiters_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/options/interactive_options.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/pipeline_fragment.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/pipeline_fragment_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/pipeline_instrument.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/pipeline_instrument_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/beam_sql_magics.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/beam_sql_magics_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/sql_chain.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/sql_chain_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/sql/utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/integration/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/integration/notebook_executor.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/integration/screen_diff.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/mock_env.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/mock_ipython.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/pipeline_assertion.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/testing/test_cache_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/user_pipeline_tracker.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/user_pipeline_tracker_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/interactive/utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/internal/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/internal/names.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/job/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/job/manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/job/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/pipeline_context.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/pipeline_context_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/pipeline_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/pipeline_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/abstract_job_service.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/artifact_service.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/artifact_service_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/expansion_service.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/expansion_service_main.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/expansion_service_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/flink_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/flink_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/flink_uber_jar_job_server.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/flink_uber_jar_job_server_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/execution.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/fn_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/translations.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/translations_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/trigger_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/trigger_manager_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/visualization_tools.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/watermark_manager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/worker_handlers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/fn_api_runner/worker_handlers_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/local_job_service.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/local_job_service_main.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/local_job_service_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/portable_metrics.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/portable_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/portable_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/prism_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/requirements_cache_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/spark_java_job_server_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/spark_uber_jar_job_server.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/spark_uber_jar_job_server_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/stager.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/portability/stager_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/render.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/render_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/sdf_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/sdf_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/test/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/trivial_runner.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/trivial_runner_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/bundle_processor_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/channel_factory.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/crossplatform_time.h +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/crossplatform_unistd.h +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/data_plane.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/data_plane_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/data_sampler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/data_sampler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/log_handler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/log_handler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/logger.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/logger_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/opcounters.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/opcounters.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/opcounters_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/operation_specs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/operations.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/operations.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/sideinputs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/sideinputs_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/statecache.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/statecache_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/statesampler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/statesampler_fast.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/statesampler_slow.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/statesampler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/worker_id_interceptor.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/worker_id_interceptor_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/worker_pool_main.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/worker_status.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/runners/worker/worker_status_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/constants.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/github_issues_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/load_test_perf_analysis.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/perf_analysis.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/perf_analysis_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/analyzers/perf_analysis_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/preprocess.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/process_tfma.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/setup.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/tfdv_analyze_and_validate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/trainer/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/trainer/model.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/trainer/task.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/chicago_taxi/trainer/taxi.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/cloudml/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/cloudml/cloudml_benchmark_constants_lib.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/cloudml/cloudml_benchmark_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/cloudml/criteo_tft/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/cloudml/pipelines/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/cloudml/pipelines/workflow.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/mltransform_generate_vocab_benchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/pytorch_image_classification_benchmarks.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/pytorch_language_modeling_benchmarks.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/pytorch_sentiment_benchmarks.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/table_row_inference_benchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/tensorflow_mnist_classification_cost_benchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/inference/vllm_gemma_benchmarks.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/models/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/models/auction_bid.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/models/field_name.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/models/nexmark_model.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/monitor.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/nexmark_launcher.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/nexmark_perf.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/nexmark_util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/nexmark_query_util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query0.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query1.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query10.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query11.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query12.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query2.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query3.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query4.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query5.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query6.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query7.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query8.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/query9.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/nexmark/queries/winning_bids.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/sort_and_batch_benchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/wordcount/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/benchmarks/wordcount/wordcount.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/data/trigger_transcripts.yaml +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/datatype_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/datatype_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/extra_assertions.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/extra_assertions_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/fast_test_utils.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/fast_test_utils.pyx +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/co_group_by_key_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/combine_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/dataflow_cost_consts.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/group_by_key_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/load_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/load_test_metrics_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/microbenchmarks_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/pardo_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/load_tests/sideinput_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/metric_result_matchers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/metric_result_matchers_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/pipeline_verifiers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/pipeline_verifiers_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/synthetic_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/synthetic_pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_stream.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_stream_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_stream_service.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_stream_service_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_stream_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/testing/test_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/coders_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/distribution_counter_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/fn_api_runner_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/map_fn_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/microbenchmarks_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/runtime_type_check_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/sideinput_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/teststream_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/tools/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/batch_dofn_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/combinefn_lifecycle_pipeline.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/combinefn_lifecycle_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/combiners.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/combiners_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/core.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/core_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/core_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/create_source.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/create_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/cy_combiners.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/cy_combiners.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/cy_dataflow_distribution_counter.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/cy_dataflow_distribution_counter.pyx +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/dataflow_distribution_counter_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/deduplicate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/deduplicate_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/display.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/display_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/dofn_lifecycle_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/bigquery.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/bigquery_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/bigquery_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/bigtable.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/bigtable_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/bigtable_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/cloudsql.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/cloudsql_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/cloudsql_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/feast_feature_store.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/feast_feature_store_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/feast_feature_store_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/vertex_ai_feature_store.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/vertex_ai_feature_store_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_handlers/vertex_ai_feature_store_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/enrichment_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/environments.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/environments_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/error_handling.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/error_handling_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/external_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/external_java.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/external_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/external_transform_provider.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/external_transform_provider_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/fully_qualified_named_transform.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/fully_qualified_named_transform_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/maven_repository_url_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/periodicsequence.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/periodicsequence_it_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/periodicsequence_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/ptransform.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/ptransform_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/py_dataflow_distribution_counter.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/resources.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/resources_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/sideinputs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/sideinputs_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/sql.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/sql_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/stats.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/stats.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/timestamped_value_type_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/timeutil.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/transforms_keyword_only_args_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/trigger.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/trigger_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/userstate.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/util.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/validate_runner_xlang_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/window.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/window_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/write_ptransform_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/transforms/xlang/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/arrow_batching_microbenchmark.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/arrow_type_compatibility.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/arrow_type_compatibility_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/batch.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/batch_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/decorators.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/decorators_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/intrinsic_one_ops.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/intrinsic_one_ops_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/native_type_compatibility.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/native_type_compatibility_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/opcodes.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/pandas_type_compatibility.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/pandas_type_compatibility_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/pytorch_type_compatibility.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/pytorch_type_compatibility_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/row_type.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/row_type_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/schema_registry.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/sharded_key_type.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/sharded_key_type_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/tagged_output_typehints_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/testing/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/testing/strategies.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/trivial_inference.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/trivial_inference_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/typecheck.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/typecheck_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/typehints/typed_pipeline_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/annotations.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/annotations_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/byte_limited_queue.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/byte_limited_queue.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/byte_limited_queue_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/counters.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/counters.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/counters_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/histogram.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/histogram_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/interactive_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/interactive_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/logger.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/logger_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/multi_process_shared.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/multi_process_shared_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/plugin.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/processes.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/processes_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/profiler.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/profiler_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/proto_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/proto_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/python_callable.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/python_callable_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/retry.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/retry_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/sentinel.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/sharded_key.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/shared.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/shared_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/thread_pool_executor.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/thread_pool_executor_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/transform_service_launcher.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/urns.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/windowed_value.pxd +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/windowed_value.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/utils/windowed_value_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/cache_provider_artifacts.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/conftest.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-combine.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-errors.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-inline-python.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-join.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-providers.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-schema.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-testing.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml-udf.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/docs/yaml.md +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/examples/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/examples/testing/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/examples/testing/examples_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/examples/testing/input_data.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/generate_yaml_docs.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/json_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/json_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/main.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/main_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/options.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/pipeline.schema.yaml +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/programming_guide_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/readme_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/standard_providers.yaml +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/test_utils/__init__.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/test_utils/datadog_test_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_combine.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_combine_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_enrichment.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_enrichment_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_errors.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_join.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_join_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_mapping.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_mapping_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_ml.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_ml_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_provider.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_provider_unit_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_specifiable.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_specifiable_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_testing.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_testing_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_transform.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_transform_scope_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_transform_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_transform_unit_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_udf_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_utils.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam/yaml/yaml_utils_test.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam.egg-info/dependency_links.txt +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam.egg-info/not-zip-safe +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/apache_beam.egg-info/top_level.txt +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/gen_protos.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/gen_xlang_wrappers.py +0 -0
- {apache_beam-2.75.0 → apache_beam-2.76.0}/setup.cfg +0 -0
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apache-beam
|
|
3
|
+
Version: 2.76.0
|
|
4
|
+
Summary: Apache Beam SDK for Python
|
|
5
|
+
Home-page: https://beam.apache.org
|
|
6
|
+
Download-URL: https://pypi.python.org/pypi/apache-beam
|
|
7
|
+
Author: Apache Software Foundation
|
|
8
|
+
Author-email: dev@beam.apache.org
|
|
9
|
+
License: Apache License, Version 2.0
|
|
10
|
+
Keywords: apache beam
|
|
11
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: cryptography<49.0.0,>=39.0.0
|
|
24
|
+
Requires-Dist: fastavro<2,>=0.23.6
|
|
25
|
+
Requires-Dist: fasteners<1.0,>=0.3
|
|
26
|
+
Requires-Dist: grpcio!=1.48.0,!=1.59.*,!=1.60.*,!=1.61.*,!=1.62.0,!=1.62.1,!=1.66.*,!=1.67.*,!=1.68.*,!=1.69.*,!=1.70.*,<2,>=1.33.1
|
|
27
|
+
Requires-Dist: httplib2<1.0.0,>=0.8
|
|
28
|
+
Requires-Dist: jsonpickle<5.0.0,>=3.0.4
|
|
29
|
+
Requires-Dist: numpy<2.5.0,>=1.14.3
|
|
30
|
+
Requires-Dist: objsize<0.8.0,>=0.6.1
|
|
31
|
+
Requires-Dist: packaging>=22.0
|
|
32
|
+
Requires-Dist: pillow<13,>=12.1.1
|
|
33
|
+
Requires-Dist: pymongo<5.0.0,>=3.8.0
|
|
34
|
+
Requires-Dist: proto-plus<2,>=1.7.1
|
|
35
|
+
Requires-Dist: protobuf!=4.0.*,!=4.21.*,!=4.22.0,!=4.23.*,!=4.24.*,<7.0.0.dev0,>=3.20.3
|
|
36
|
+
Requires-Dist: python-dateutil<3,>=2.8.0
|
|
37
|
+
Requires-Dist: pytz>=2018.3
|
|
38
|
+
Requires-Dist: requests<3.0.0,>=2.32.4
|
|
39
|
+
Requires-Dist: sortedcontainers>=2.4.0
|
|
40
|
+
Requires-Dist: typing-extensions>=3.7.0
|
|
41
|
+
Requires-Dist: zstandard<1,>=0.18.0
|
|
42
|
+
Requires-Dist: pyyaml<7.0.0,>=3.12
|
|
43
|
+
Requires-Dist: beartype<0.23.0,>=0.21.0
|
|
44
|
+
Requires-Dist: pyarrow<26.0.0,>=14.0.1
|
|
45
|
+
Provides-Extra: dev
|
|
46
|
+
Requires-Dist: pyrefly==1.1.1; extra == "dev"
|
|
47
|
+
Requires-Dist: ruff==0.15.22; extra == "dev"
|
|
48
|
+
Requires-Dist: yapf==0.43.0; extra == "dev"
|
|
49
|
+
Provides-Extra: dill
|
|
50
|
+
Requires-Dist: dill<0.3.2,>=0.3.1.1; extra == "dill"
|
|
51
|
+
Provides-Extra: docs
|
|
52
|
+
Requires-Dist: jinja2<3.2,>=3.0; extra == "docs"
|
|
53
|
+
Requires-Dist: Sphinx<8.0,>=7.0.0; extra == "docs"
|
|
54
|
+
Requires-Dist: docstring-parser<1.0,>=0.15; extra == "docs"
|
|
55
|
+
Requires-Dist: docutils>=0.18.1; extra == "docs"
|
|
56
|
+
Requires-Dist: markdown; extra == "docs"
|
|
57
|
+
Requires-Dist: pandas<2.4.0; extra == "docs"
|
|
58
|
+
Requires-Dist: openai; extra == "docs"
|
|
59
|
+
Requires-Dist: virtualenv-clone<1.0,>=0.5; extra == "docs"
|
|
60
|
+
Provides-Extra: test
|
|
61
|
+
Requires-Dist: cloud-sql-python-connector[pg8000]<2.0.0,>=1.0.0; extra == "test"
|
|
62
|
+
Requires-Dist: docstring-parser<1.0,>=0.15; extra == "test"
|
|
63
|
+
Requires-Dist: freezegun>=0.3.12; extra == "test"
|
|
64
|
+
Requires-Dist: jinja2<3.2,>=3.0; extra == "test"
|
|
65
|
+
Requires-Dist: joblib>=1.0.1; extra == "test"
|
|
66
|
+
Requires-Dist: mock<6.0.0,>=1.0.1; extra == "test"
|
|
67
|
+
Requires-Dist: pandas<2.4.0; extra == "test"
|
|
68
|
+
Requires-Dist: parameterized<0.10.0,>=0.7.1; extra == "test"
|
|
69
|
+
Requires-Dist: pydot<2,>=1.2.0; extra == "test"
|
|
70
|
+
Requires-Dist: pyhamcrest!=1.10.0,<3.0.0,>=1.9; extra == "test"
|
|
71
|
+
Requires-Dist: requests_mock<2.0,>=1.7; extra == "test"
|
|
72
|
+
Requires-Dist: tenacity<10,>=8.0.0; extra == "test"
|
|
73
|
+
Requires-Dist: pytest<10.0,>=7.1.2; extra == "test"
|
|
74
|
+
Requires-Dist: pytest-xdist<4,>=2.5.0; extra == "test"
|
|
75
|
+
Requires-Dist: pytest-timeout<3,>=2.1.0; extra == "test"
|
|
76
|
+
Requires-Dist: scikit-learn<1.8.0,>=0.20.0; extra == "test"
|
|
77
|
+
Requires-Dist: sqlalchemy<3.0,>=1.3; extra == "test"
|
|
78
|
+
Requires-Dist: psycopg2-binary<3.0,>=2.8.5; extra == "test"
|
|
79
|
+
Requires-Dist: testcontainers[kafka,milvus,mysql,qdrant]<5.0.0,>=4.0.0; extra == "test"
|
|
80
|
+
Requires-Dist: cryptography>=41.0.2; extra == "test"
|
|
81
|
+
Requires-Dist: hypothesis<6.148.4,>5.0.0; extra == "test"
|
|
82
|
+
Requires-Dist: virtualenv-clone<1.0,>=0.5; extra == "test"
|
|
83
|
+
Requires-Dist: python-tds>=1.16.1; extra == "test"
|
|
84
|
+
Requires-Dist: sqlalchemy-pytds>=1.0.2; extra == "test"
|
|
85
|
+
Requires-Dist: pg8000>=1.31.5; extra == "test"
|
|
86
|
+
Requires-Dist: PyMySQL>=1.1.0; extra == "test"
|
|
87
|
+
Requires-Dist: oracledb>=3.1.1; extra == "test"
|
|
88
|
+
Provides-Extra: gcp
|
|
89
|
+
Requires-Dist: cachetools<7,>=3.1.0; extra == "gcp"
|
|
90
|
+
Requires-Dist: google-api-core<3,>=2.0.0; extra == "gcp"
|
|
91
|
+
Requires-Dist: google-apitools<0.5.32,>=0.5.31; python_version < "3.13" and extra == "gcp"
|
|
92
|
+
Requires-Dist: google-apitools>=0.5.35; python_version >= "3.13" and extra == "gcp"
|
|
93
|
+
Requires-Dist: google-auth<3,>=2.0.0; extra == "gcp"
|
|
94
|
+
Requires-Dist: google-auth-httplib2<0.3.0,>=0.1.0; extra == "gcp"
|
|
95
|
+
Requires-Dist: google-cloud-datastore<3,>=2.0.0; extra == "gcp"
|
|
96
|
+
Requires-Dist: google-cloud-pubsub<3,>=2.1.0; extra == "gcp"
|
|
97
|
+
Requires-Dist: google-cloud-storage<4,>=2.18.2; extra == "gcp"
|
|
98
|
+
Requires-Dist: google-cloud-resource-manager<2,>=1.12.0; extra == "gcp"
|
|
99
|
+
Requires-Dist: google-cloud-dataflow-client<0.14.0,>=0.13.0; extra == "gcp"
|
|
100
|
+
Requires-Dist: google-cloud-bigquery<4,>=2.0.0; extra == "gcp"
|
|
101
|
+
Requires-Dist: google-cloud-bigquery-storage<3,>=2.6.3; extra == "gcp"
|
|
102
|
+
Requires-Dist: google-cloud-core<3,>=2.0.0; extra == "gcp"
|
|
103
|
+
Requires-Dist: google-cloud-bigtable<3,>=2.42.0; extra == "gcp"
|
|
104
|
+
Requires-Dist: google-cloud-build<4,>=3.35.0; extra == "gcp"
|
|
105
|
+
Requires-Dist: google-cloud-spanner<4,>=3.0.0; extra == "gcp"
|
|
106
|
+
Requires-Dist: google-cloud-dlp<4,>=3.0.0; extra == "gcp"
|
|
107
|
+
Requires-Dist: google-cloud-kms<4,>=3.0.0; extra == "gcp"
|
|
108
|
+
Requires-Dist: google-cloud-language<3,>=2.0; extra == "gcp"
|
|
109
|
+
Requires-Dist: google-cloud-secret-manager<3,>=2.0; extra == "gcp"
|
|
110
|
+
Requires-Dist: google-cloud-videointelligence<3,>=2.0; extra == "gcp"
|
|
111
|
+
Requires-Dist: google-cloud-vision<4,>=2; extra == "gcp"
|
|
112
|
+
Requires-Dist: google-cloud-recommendations-ai<0.11.0,>=0.1.0; extra == "gcp"
|
|
113
|
+
Requires-Dist: google-cloud-aiplatform<2.0,>=1.26.0; extra == "gcp"
|
|
114
|
+
Requires-Dist: cloud-sql-python-connector<2.0.0,>=1.18.2; extra == "gcp"
|
|
115
|
+
Requires-Dist: python-tds>=1.16.1; extra == "gcp"
|
|
116
|
+
Requires-Dist: pg8000>=1.31.5; extra == "gcp"
|
|
117
|
+
Requires-Dist: PyMySQL>=1.1.0; extra == "gcp"
|
|
118
|
+
Requires-Dist: keyrings.google-artifactregistry-auth; extra == "gcp"
|
|
119
|
+
Requires-Dist: orjson<4,>=3.9.7; extra == "gcp"
|
|
120
|
+
Requires-Dist: regex>=2020.6.8; extra == "gcp"
|
|
121
|
+
Provides-Extra: interactive
|
|
122
|
+
Requires-Dist: facets-overview<2,>=1.1.0; extra == "interactive"
|
|
123
|
+
Requires-Dist: google-cloud-dataproc<6,>=5.0.0; extra == "interactive"
|
|
124
|
+
Requires-Dist: ipython<9,>=7; extra == "interactive"
|
|
125
|
+
Requires-Dist: ipykernel<7,>=6; extra == "interactive"
|
|
126
|
+
Requires-Dist: ipywidgets<9,>=8; extra == "interactive"
|
|
127
|
+
Requires-Dist: jupyter-client!=6.1.13,<8.2.1,>=6.1.11; extra == "interactive"
|
|
128
|
+
Requires-Dist: pydot<2,>=1.2.0; extra == "interactive"
|
|
129
|
+
Requires-Dist: timeloop<2,>=1.0.2; extra == "interactive"
|
|
130
|
+
Requires-Dist: nbformat<6,>=5.0.5; extra == "interactive"
|
|
131
|
+
Requires-Dist: nbconvert<8,>=6.2.0; extra == "interactive"
|
|
132
|
+
Requires-Dist: pandas!=1.5.0,!=1.5.1,<2.4,>=1.4.3; extra == "interactive"
|
|
133
|
+
Provides-Extra: interactive-test
|
|
134
|
+
Requires-Dist: needle<1,>=0.5.0; extra == "interactive-test"
|
|
135
|
+
Requires-Dist: chromedriver-binary<118,>=117; extra == "interactive-test"
|
|
136
|
+
Requires-Dist: pillow<10,>=7.1.1; extra == "interactive-test"
|
|
137
|
+
Requires-Dist: urllib3<2,>=1.21.1; extra == "interactive-test"
|
|
138
|
+
Provides-Extra: ml-test
|
|
139
|
+
Requires-Dist: datatable; extra == "ml-test"
|
|
140
|
+
Requires-Dist: dill; extra == "ml-test"
|
|
141
|
+
Requires-Dist: tensorflow_transform<1.22.0,>=1.21.0; extra == "ml-test"
|
|
142
|
+
Requires-Dist: tf2onnx<1.18,>=1.17.0; extra == "ml-test"
|
|
143
|
+
Requires-Dist: embeddings>=0.0.4; extra == "ml-test"
|
|
144
|
+
Requires-Dist: onnxruntime; extra == "ml-test"
|
|
145
|
+
Requires-Dist: onnx<2,>=1.14.1; extra == "ml-test"
|
|
146
|
+
Requires-Dist: langchain; extra == "ml-test"
|
|
147
|
+
Requires-Dist: sentence-transformers>=2.2.2; extra == "ml-test"
|
|
148
|
+
Requires-Dist: skl2onnx; extra == "ml-test"
|
|
149
|
+
Requires-Dist: pyod>=0.7.6; extra == "ml-test"
|
|
150
|
+
Requires-Dist: tensorflow; extra == "ml-test"
|
|
151
|
+
Requires-Dist: absl-py>=0.12.0; extra == "ml-test"
|
|
152
|
+
Requires-Dist: tensorflow-hub; extra == "ml-test"
|
|
153
|
+
Requires-Dist: tokenizers<0.23; extra == "ml-test"
|
|
154
|
+
Requires-Dist: torch<2.12.0; extra == "ml-test"
|
|
155
|
+
Requires-Dist: transformers<4.56.0,>=4.28.0; extra == "ml-test"
|
|
156
|
+
Requires-Dist: tokenizers<0.22.0,>=0.13.3; extra == "ml-test"
|
|
157
|
+
Provides-Extra: p310-ml-test
|
|
158
|
+
Requires-Dist: datatable; extra == "p310-ml-test"
|
|
159
|
+
Requires-Dist: embeddings>=0.0.4; extra == "p310-ml-test"
|
|
160
|
+
Requires-Dist: onnxruntime; extra == "p310-ml-test"
|
|
161
|
+
Requires-Dist: onnx<2,>=1.14.1; extra == "p310-ml-test"
|
|
162
|
+
Requires-Dist: langchain; extra == "p310-ml-test"
|
|
163
|
+
Requires-Dist: sentence-transformers>=2.2.2; extra == "p310-ml-test"
|
|
164
|
+
Requires-Dist: skl2onnx; extra == "p310-ml-test"
|
|
165
|
+
Requires-Dist: pyod>=0.7.6; extra == "p310-ml-test"
|
|
166
|
+
Requires-Dist: tensorflow; extra == "p310-ml-test"
|
|
167
|
+
Requires-Dist: absl-py>=0.12.0; extra == "p310-ml-test"
|
|
168
|
+
Requires-Dist: tensorflow-hub; extra == "p310-ml-test"
|
|
169
|
+
Requires-Dist: tokenizers<0.23; extra == "p310-ml-test"
|
|
170
|
+
Requires-Dist: torch<2.12.0; extra == "p310-ml-test"
|
|
171
|
+
Requires-Dist: transformers<4.56.0,>=4.28.0; extra == "p310-ml-test"
|
|
172
|
+
Requires-Dist: tokenizers<0.22.0,>=0.13.3; extra == "p310-ml-test"
|
|
173
|
+
Requires-Dist: google-adk==1.28.1; extra == "p310-ml-test"
|
|
174
|
+
Requires-Dist: proto-plus<2,>=1.26.1; extra == "p310-ml-test"
|
|
175
|
+
Requires-Dist: opentelemetry-api==1.37.0; extra == "p310-ml-test"
|
|
176
|
+
Requires-Dist: opentelemetry-sdk==1.37.0; extra == "p310-ml-test"
|
|
177
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.37.0; extra == "p310-ml-test"
|
|
178
|
+
Requires-Dist: tf2onnx<1.18,>=1.17.0; extra == "p310-ml-test"
|
|
179
|
+
Requires-Dist: qdrant-client>=1.15.0; extra == "p310-ml-test"
|
|
180
|
+
Provides-Extra: p312-ml-test
|
|
181
|
+
Requires-Dist: datatable; extra == "p312-ml-test"
|
|
182
|
+
Requires-Dist: embeddings>=0.0.4; extra == "p312-ml-test"
|
|
183
|
+
Requires-Dist: onnxruntime; extra == "p312-ml-test"
|
|
184
|
+
Requires-Dist: onnx<2,>=1.14.1; extra == "p312-ml-test"
|
|
185
|
+
Requires-Dist: langchain; extra == "p312-ml-test"
|
|
186
|
+
Requires-Dist: sentence-transformers>=2.2.2; extra == "p312-ml-test"
|
|
187
|
+
Requires-Dist: skl2onnx; extra == "p312-ml-test"
|
|
188
|
+
Requires-Dist: pyod>=0.7.6; extra == "p312-ml-test"
|
|
189
|
+
Requires-Dist: tensorflow; extra == "p312-ml-test"
|
|
190
|
+
Requires-Dist: absl-py>=0.12.0; extra == "p312-ml-test"
|
|
191
|
+
Requires-Dist: tensorflow-hub; extra == "p312-ml-test"
|
|
192
|
+
Requires-Dist: tokenizers<0.23; extra == "p312-ml-test"
|
|
193
|
+
Requires-Dist: torch<2.12.0; extra == "p312-ml-test"
|
|
194
|
+
Requires-Dist: transformers<4.56.0,>=4.28.0; extra == "p312-ml-test"
|
|
195
|
+
Requires-Dist: tokenizers<0.22.0,>=0.13.3; extra == "p312-ml-test"
|
|
196
|
+
Requires-Dist: google-adk==1.28.1; extra == "p312-ml-test"
|
|
197
|
+
Requires-Dist: proto-plus<2,>=1.26.1; extra == "p312-ml-test"
|
|
198
|
+
Requires-Dist: opentelemetry-api==1.37.0; extra == "p312-ml-test"
|
|
199
|
+
Requires-Dist: opentelemetry-sdk==1.37.0; extra == "p312-ml-test"
|
|
200
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.37.0; extra == "p312-ml-test"
|
|
201
|
+
Requires-Dist: tf2onnx<1.18,>=1.17.0; extra == "p312-ml-test"
|
|
202
|
+
Requires-Dist: qdrant-client>=1.15.0; extra == "p312-ml-test"
|
|
203
|
+
Provides-Extra: p313-ml-test
|
|
204
|
+
Requires-Dist: embeddings>=0.0.4; extra == "p313-ml-test"
|
|
205
|
+
Requires-Dist: onnxruntime; extra == "p313-ml-test"
|
|
206
|
+
Requires-Dist: onnx<2,>=1.14.1; extra == "p313-ml-test"
|
|
207
|
+
Requires-Dist: langchain; extra == "p313-ml-test"
|
|
208
|
+
Requires-Dist: sentence-transformers>=2.2.2; extra == "p313-ml-test"
|
|
209
|
+
Requires-Dist: skl2onnx; extra == "p313-ml-test"
|
|
210
|
+
Requires-Dist: pyod>=0.7.6; extra == "p313-ml-test"
|
|
211
|
+
Requires-Dist: tensorflow; extra == "p313-ml-test"
|
|
212
|
+
Requires-Dist: absl-py>=0.12.0; extra == "p313-ml-test"
|
|
213
|
+
Requires-Dist: tensorflow-hub; extra == "p313-ml-test"
|
|
214
|
+
Requires-Dist: tokenizers<0.23; extra == "p313-ml-test"
|
|
215
|
+
Requires-Dist: torch<2.12.0; extra == "p313-ml-test"
|
|
216
|
+
Requires-Dist: transformers<4.56.0,>=4.28.0; extra == "p313-ml-test"
|
|
217
|
+
Requires-Dist: tokenizers<0.22.0,>=0.13.3; extra == "p313-ml-test"
|
|
218
|
+
Requires-Dist: pymilvus<3.0.0,>=2.5.10; extra == "p313-ml-test"
|
|
219
|
+
Requires-Dist: qdrant-client>=1.15.0; extra == "p313-ml-test"
|
|
220
|
+
Provides-Extra: aws
|
|
221
|
+
Requires-Dist: boto3<2,>=1.9; extra == "aws"
|
|
222
|
+
Provides-Extra: azure
|
|
223
|
+
Requires-Dist: azure-storage-blob<13,>=12.3.2; extra == "azure"
|
|
224
|
+
Requires-Dist: azure-core<2,>=1.7.0; extra == "azure"
|
|
225
|
+
Requires-Dist: azure-identity<2,>=1.12.0; extra == "azure"
|
|
226
|
+
Provides-Extra: dataframe
|
|
227
|
+
Requires-Dist: pandas!=1.5.0,!=1.5.1,<2.4,>=1.4.3; extra == "dataframe"
|
|
228
|
+
Provides-Extra: dask
|
|
229
|
+
Requires-Dist: distributed>=2024.4.2; extra == "dask"
|
|
230
|
+
Requires-Dist: dask>=2024.4.2; extra == "dask"
|
|
231
|
+
Provides-Extra: hadoop
|
|
232
|
+
Requires-Dist: hdfs<3.0.0,>=2.1.0; extra == "hadoop"
|
|
233
|
+
Provides-Extra: yaml
|
|
234
|
+
Requires-Dist: docstring-parser<1.0,>=0.15; extra == "yaml"
|
|
235
|
+
Requires-Dist: jinja2<3.2,>=3.0; extra == "yaml"
|
|
236
|
+
Requires-Dist: virtualenv-clone<1.0,>=0.5; extra == "yaml"
|
|
237
|
+
Requires-Dist: quickjs-ng<1.0.0,>=0.14.0; extra == "yaml"
|
|
238
|
+
Requires-Dist: jsonschema<5.0.0,>=4.0.0; extra == "yaml"
|
|
239
|
+
Requires-Dist: pandas!=1.5.0,!=1.5.1,<2.4,>=1.4.3; extra == "yaml"
|
|
240
|
+
Provides-Extra: torch
|
|
241
|
+
Requires-Dist: torch<2.8.0,>=1.9.0; extra == "torch"
|
|
242
|
+
Provides-Extra: tensorflow
|
|
243
|
+
Requires-Dist: tensorflow<2.22,>=2.12rc1; extra == "tensorflow"
|
|
244
|
+
Requires-Dist: absl-py>=0.12.0; extra == "tensorflow"
|
|
245
|
+
Provides-Extra: transformers
|
|
246
|
+
Requires-Dist: transformers<4.56.0,>=4.28.0; extra == "transformers"
|
|
247
|
+
Requires-Dist: tensorflow>=2.12.0; extra == "transformers"
|
|
248
|
+
Requires-Dist: torch<2.12.0,>=1.9.0; extra == "transformers"
|
|
249
|
+
Provides-Extra: ml-cpu
|
|
250
|
+
Requires-Dist: tensorflow>=2.12.0; extra == "ml-cpu"
|
|
251
|
+
Requires-Dist: torch==2.8.0+cpu; extra == "ml-cpu"
|
|
252
|
+
Requires-Dist: transformers<4.56.0,>=4.28.0; extra == "ml-cpu"
|
|
253
|
+
Requires-Dist: absl-py>=0.12.0; extra == "ml-cpu"
|
|
254
|
+
Provides-Extra: redis
|
|
255
|
+
Requires-Dist: redis<6,>=5.0.0; extra == "redis"
|
|
256
|
+
Provides-Extra: tft
|
|
257
|
+
Requires-Dist: tensorflow_transform<1.22.0,>=1.21.0; extra == "tft"
|
|
258
|
+
Requires-Dist: dill; extra == "tft"
|
|
259
|
+
Provides-Extra: tfrecord
|
|
260
|
+
Requires-Dist: crcmod<2.0,>=1.7; extra == "tfrecord"
|
|
261
|
+
Provides-Extra: onnx
|
|
262
|
+
Requires-Dist: onnxruntime==1.13.1; extra == "onnx"
|
|
263
|
+
Requires-Dist: torch==1.13.1; extra == "onnx"
|
|
264
|
+
Requires-Dist: tensorflow==2.11.0; extra == "onnx"
|
|
265
|
+
Requires-Dist: tf2onnx==1.17.0; extra == "onnx"
|
|
266
|
+
Requires-Dist: skl2onnx==1.13; extra == "onnx"
|
|
267
|
+
Requires-Dist: transformers==4.25.1; extra == "onnx"
|
|
268
|
+
Requires-Dist: absl-py>=0.12.0; extra == "onnx"
|
|
269
|
+
Provides-Extra: xgboost
|
|
270
|
+
Requires-Dist: xgboost<2.1.3,>=1.6.0; extra == "xgboost"
|
|
271
|
+
Requires-Dist: datatable==1.0.0; extra == "xgboost"
|
|
272
|
+
Provides-Extra: tensorflow-hub
|
|
273
|
+
Requires-Dist: tensorflow-hub<0.16.0,>=0.14.0; extra == "tensorflow-hub"
|
|
274
|
+
Provides-Extra: milvus
|
|
275
|
+
Requires-Dist: pymilvus<3.0.0,>=2.5.10; extra == "milvus"
|
|
276
|
+
Provides-Extra: qdrant
|
|
277
|
+
Requires-Dist: qdrant-client>=1.15.0; extra == "qdrant"
|
|
278
|
+
Provides-Extra: vllm
|
|
279
|
+
Requires-Dist: openai==1.107.1; extra == "vllm"
|
|
280
|
+
Requires-Dist: vllm==0.10.1.1; extra == "vllm"
|
|
281
|
+
Requires-Dist: triton==3.3.1; extra == "vllm"
|
|
282
|
+
Dynamic: author
|
|
283
|
+
Dynamic: author-email
|
|
284
|
+
Dynamic: classifier
|
|
285
|
+
Dynamic: description
|
|
286
|
+
Dynamic: description-content-type
|
|
287
|
+
Dynamic: download-url
|
|
288
|
+
Dynamic: home-page
|
|
289
|
+
Dynamic: keywords
|
|
290
|
+
Dynamic: license
|
|
291
|
+
Dynamic: provides-extra
|
|
292
|
+
Dynamic: requires-dist
|
|
293
|
+
Dynamic: requires-python
|
|
294
|
+
Dynamic: summary
|
|
295
|
+
|
|
296
|
+
# Apache Beam
|
|
297
|
+
|
|
298
|
+
[Apache Beam](http://beam.apache.org/) is a unified model for defining both batch and streaming data-parallel processing pipelines, as well as a set of language-specific SDKs for constructing pipelines and Runners for executing them on distributed processing backends, including [Apache Flink](http://flink.apache.org/), [Apache Spark](http://spark.apache.org/), [Google Cloud Dataflow](http://cloud.google.com/dataflow/), and [Hazelcast Jet](https://jet.hazelcast.org/).
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
## Overview
|
|
302
|
+
|
|
303
|
+
Beam provides a general approach to expressing [embarrassingly parallel](https://en.wikipedia.org/wiki/Embarrassingly_parallel) data processing pipelines and supports three categories of users, each of which have relatively disparate backgrounds and needs.
|
|
304
|
+
|
|
305
|
+
1. _End Users_: Writing pipelines with an existing SDK, running it on an existing runner. These users want to focus on writing their application logic and have everything else just work.
|
|
306
|
+
2. _SDK Writers_: Developing a Beam SDK targeted at a specific user community (Java, Python, Scala, Go, R, graphical, etc). These users are language geeks and would prefer to be shielded from all the details of various runners and their implementations.
|
|
307
|
+
3. _Runner Writers_: Have an execution environment for distributed processing and would like to support programs written against the Beam Model. Would prefer to be shielded from details of multiple SDKs.
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
### The Beam Model
|
|
311
|
+
|
|
312
|
+
The model behind Beam evolved from several internal Google data processing projects, including [MapReduce](http://research.google.com/archive/mapreduce.html), [FlumeJava](http://research.google.com/pubs/pub35650.html), and [Millwheel](http://research.google.com/pubs/pub41378.html). This model was originally known as the “[Dataflow Model](http://www.vldb.org/pvldb/vol8/p1792-Akidau.pdf)”.
|
|
313
|
+
|
|
314
|
+
To learn more about the Beam Model (though still under the original name of Dataflow), see the World Beyond Batch: [Streaming 101](https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-101) and [Streaming 102](https://www.oreilly.com/ideas/the-world-beyond-batch-streaming-102) posts on O’Reilly’s Radar site, and the [VLDB 2015 paper](http://www.vldb.org/pvldb/vol8/p1792-Akidau.pdf).
|
|
315
|
+
|
|
316
|
+
The key concepts in the Beam programming model are:
|
|
317
|
+
|
|
318
|
+
* `PCollection`: represents a collection of data, which could be bounded or unbounded in size.
|
|
319
|
+
* `PTransform`: represents a computation that transforms input PCollections into output PCollections.
|
|
320
|
+
* `Pipeline`: manages a directed acyclic graph of PTransforms and PCollections that is ready for execution.
|
|
321
|
+
* `PipelineRunner`: specifies where and how the pipeline should execute.
|
|
322
|
+
|
|
323
|
+
### Runners
|
|
324
|
+
|
|
325
|
+
Beam supports executing programs on multiple distributed processing backends through PipelineRunners. Currently, the following PipelineRunners are available:
|
|
326
|
+
|
|
327
|
+
- The `DirectRunner` runs the pipeline on your local machine.
|
|
328
|
+
- The `PrismRunner` runs the pipeline on your local machine using Beam Portability.
|
|
329
|
+
- The `DataflowRunner` submits the pipeline to the [Google Cloud Dataflow](http://cloud.google.com/dataflow/).
|
|
330
|
+
- The `FlinkRunner` runs the pipeline on an Apache Flink cluster. The code has been donated from [dataArtisans/flink-dataflow](https://github.com/dataArtisans/flink-dataflow) and is now part of Beam.
|
|
331
|
+
- The `SparkRunner` runs the pipeline on an Apache Spark cluster.
|
|
332
|
+
- The `JetRunner` runs the pipeline on a Hazelcast Jet cluster. The code has been donated from [hazelcast/hazelcast-jet](https://github.com/hazelcast/hazelcast-jet) and is now part of Beam.
|
|
333
|
+
- The `Twister2Runner` runs the pipeline on a Twister2 cluster. The code has been donated from [DSC-SPIDAL/twister2](https://github.com/DSC-SPIDAL/twister2) and is now part of Beam.
|
|
334
|
+
|
|
335
|
+
Have ideas for new Runners? See the [runner-ideas label](https://github.com/apache/beam/issues?q=is%3Aopen+is%3Aissue+label%3Arunner-ideas).
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
## Get started with the Python SDK
|
|
339
|
+
|
|
340
|
+
Get started with the [Beam Python SDK quickstart](/get-started/quickstart-py) to set up your Python development environment, get the Beam SDK for Python, and run an example pipeline. Then, read through the [Beam programming guide](/documentation/programming-guide) to learn the basic concepts that apply to all SDKs in Beam. The [Python Tips document](../../contributor-docs/python-tips.md) is also a useful resource for setting up a development environment and performing common processes.
|
|
341
|
+
|
|
342
|
+
See the [Python API reference](https://beam.apache.org/releases/pydoc/) for more information on individual APIs.
|
|
343
|
+
|
|
344
|
+
## Python streaming pipelines
|
|
345
|
+
|
|
346
|
+
Python [streaming pipeline execution](https://beam.apache.org/documentation/sdks/python-streaming)
|
|
347
|
+
is available (with some [limitations](https://beam.apache.org//documentation/sdks/python-streaming/#unsupported-features))
|
|
348
|
+
starting with Beam SDK version 2.5.0.
|
|
349
|
+
|
|
350
|
+
## Python type safety
|
|
351
|
+
|
|
352
|
+
Python is a dynamically-typed language with no static type checking. The Beam SDK for Python uses type hints during pipeline construction and runtime to try to emulate the correctness guarantees achieved by true static typing. [Ensuring Python Type Safety](https://beam.apache.org/documentation/sdks/python-type-safety) walks through how to use type hints, which help you to catch potential bugs up front with the [Direct Runner](https://beam.apache.org//documentation/runners/direct/).
|
|
353
|
+
|
|
354
|
+
## Managing Python pipeline dependencies
|
|
355
|
+
|
|
356
|
+
When you run your pipeline locally, the packages that your pipeline depends on are available because they are installed on your local machine. However, when you want to run your pipeline remotely, you must make sure these dependencies are available on the remote machines. [Managing Python Pipeline Dependencies](https://beam.apache.org/documentation/sdks/python-pipeline-dependencies) shows you how to make your dependencies available to the remote workers.
|
|
357
|
+
|
|
358
|
+
## Developing new I/O connectors for Python
|
|
359
|
+
|
|
360
|
+
The Beam SDK for Python provides an extensible API that you can use to create
|
|
361
|
+
new I/O connectors. See the [Developing I/O connectors overview](https://beam.apache.org/documentation/io/developing-io-overview)
|
|
362
|
+
for information about developing new I/O connectors and links to
|
|
363
|
+
language-specific implementation guidance.
|
|
364
|
+
|
|
365
|
+
## Making machine learning inferences with Python
|
|
366
|
+
|
|
367
|
+
To integrate machine learning models into your pipelines for making inferences, use the RunInference API for PyTorch and Scikit-learn models. If you are using TensorFlow models, you can make use of the
|
|
368
|
+
[library from `tfx_bsl`](https://github.com/tensorflow/tfx-bsl/tree/master/tfx_bsl/beam).
|
|
369
|
+
|
|
370
|
+
You can create multiple types of transforms using the RunInference API: the API takes multiple types of setup parameters from model handlers, and the parameter type determines the model implementation. For more information,
|
|
371
|
+
see [About Beam ML](https://beam.apache.org/documentation/ml/about-ml).
|
|
372
|
+
|
|
373
|
+
[TensorFlow Extended (TFX)](https://www.tensorflow.org/tfx) is an end-to-end platform for deploying production ML pipelines. TFX is integrated with Beam. For more information, see [TFX user guide](https://www.tensorflow.org/tfx/guide).
|
|
374
|
+
|
|
375
|
+
## Python multi-language pipelines quickstart
|
|
376
|
+
|
|
377
|
+
Apache Beam lets you combine transforms written in any supported SDK language and use them in one multi-language pipeline. To learn how to create a multi-language pipeline using the Python SDK, see the [Python multi-language pipelines quickstart](https://beam.apache.org/documentation/sdks/python-multi-language-pipelines).
|
|
378
|
+
|
|
379
|
+
## Unrecoverable Errors in Beam Python
|
|
380
|
+
|
|
381
|
+
Some common errors can occur during worker start-up and prevent jobs from starting. To learn about these errors and how to troubleshoot them in the Python SDK, see [Unrecoverable Errors in Beam Python](https://beam.apache.org/documentation/sdks/python-unrecoverable-errors).
|
|
382
|
+
|
|
383
|
+
## 📚 Learn More
|
|
384
|
+
|
|
385
|
+
Here are some resources actively maintained by the Beam community to help you get started:
|
|
386
|
+
<table>
|
|
387
|
+
<thead>
|
|
388
|
+
<tr>
|
|
389
|
+
<th><b>Resource</b></th>
|
|
390
|
+
<th><b>Details</b></th>
|
|
391
|
+
</tr>
|
|
392
|
+
</thead>
|
|
393
|
+
<tbody>
|
|
394
|
+
<tr>
|
|
395
|
+
<td><a href="https://beam.apache.org" target="_blank" rel="noopener noreferrer">Apache Beam Website</a></td>
|
|
396
|
+
<td>Our website discussing the project, and it's specifics.</td>
|
|
397
|
+
</tr>
|
|
398
|
+
<tr>
|
|
399
|
+
<td><a href="https://beam.apache.org/get-started/quickstart-py" target="_blank" rel="noopener noreferrer">Python Quickstart</a></td>
|
|
400
|
+
<td>A guide to getting started with the Python SDK.</td>
|
|
401
|
+
</tr>
|
|
402
|
+
<tr>
|
|
403
|
+
<td><a href="https://tour.beam.apache.org/" target="_blank" rel="noopener noreferrer">Tour of Beam </a></td>
|
|
404
|
+
<td>A comprehensive, interactive learning experience covering Beam concepts in depth.</td>
|
|
405
|
+
</tr>
|
|
406
|
+
<tr>
|
|
407
|
+
<td><a href="https://www.cloudskillsboost.google/course_templates/724" target="_blank" rel="noopener noreferrer">Beam Quest </a></td>
|
|
408
|
+
<td>A certification granted by Google Cloud, certifying proficiency in Beam.</td>
|
|
409
|
+
</tr>
|
|
410
|
+
<tr>
|
|
411
|
+
<td><a href="https://metrics.beam.apache.org/" target="_blank" rel="noopener noreferrer">Community Metrics </a></td>
|
|
412
|
+
<td>Beam's Git Community Metrics.</td>
|
|
413
|
+
</tr>
|
|
414
|
+
</tbody>
|
|
415
|
+
</table>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
## Contribution
|
|
419
|
+
|
|
420
|
+
Instructions for building and testing Beam itself
|
|
421
|
+
are in the [contribution guide](https://beam.apache.org/contribute).
|
|
422
|
+
|
|
423
|
+
## Contact Us
|
|
424
|
+
|
|
425
|
+
To get involved with Apache Beam:
|
|
426
|
+
|
|
427
|
+
* [Subscribe to](https://beam.apache.org/community/contact-us/#:~:text=Subscribe%20and%20Unsubscribe) or e-mail the [user@beam.apache.org](http://mail-archives.apache.org/mod_mbox/beam-user/) list.
|
|
428
|
+
* [Subscribe to](https://beam.apache.org/community/contact-us/#:~:text=Subscribe%20and%20Unsubscribe) or e-mail the [dev@beam.apache.org](http://mail-archives.apache.org/mod_mbox/beam-dev/) list.
|
|
429
|
+
* [Join ASF Slack](https://s.apache.org/slack-invite) on [#beam channel](https://s.apache.org/beam-slack-channel)
|
|
430
|
+
* [Report an issue](https://github.com/apache/beam/issues/new/choose).
|