dlt-fabric 1.28.1__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.
- dlt_fabric-1.28.1/.gitignore +168 -0
- dlt_fabric-1.28.1/LICENSE.txt +203 -0
- dlt_fabric-1.28.1/PKG-INFO +216 -0
- dlt_fabric-1.28.1/README.md +41 -0
- dlt_fabric-1.28.1/dlt/__init__.py +96 -0
- dlt_fabric-1.28.1/dlt/__main__.py +4 -0
- dlt_fabric-1.28.1/dlt/__plugins__.py +18 -0
- dlt_fabric-1.28.1/dlt/_workspace/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/_workspace/_known_env.py +4 -0
- dlt_fabric-1.28.1/dlt/_workspace/_plugins.py +141 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_core_source_templates/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_core_source_templates/filesystem_pipeline.py +196 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_core_source_templates/rest_api_pipeline.py +154 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_core_source_templates/sql_database_pipeline.py +324 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/.dlt/config.toml +5 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/.gitignore +206 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/arrow_pipeline.py +60 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/context_rest_api_pipeline.py +42 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/dataframe_pipeline.py +62 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/debug_pipeline.py +64 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/default_pipeline.py +111 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/fruitshop_pipeline.py +98 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/github_api_pipeline.py +73 -0
- dlt_fabric-1.28.1/dlt/_workspace/_templates/_single_file_templates/requests_pipeline.py +61 -0
- dlt_fabric-1.28.1/dlt/_workspace/_workspace_context.py +279 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/__init__.py +12 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_debug.py +17 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_deploy_command.py +487 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_deploy_command_helpers.py +449 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_dlt.py +395 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_init_command.py +759 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_pipeline_command.py +470 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_pipeline_files.py +391 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_plugins.py +146 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_telemetry_command.py +63 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_urls.py +15 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/_write_state.py +166 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/commands.py +744 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/compose.py +134 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/config_toml_writer.py +132 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/__init__.py +1 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/_init_command.py +157 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/_local_workspace_command.py +278 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/_profile_command.py +59 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/ai/__init__.py +31 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/ai/agents.py +458 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/ai/commands.py +662 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/ai/typing.py +67 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/ai/utils.py +661 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/commands.py +758 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/typing.py +101 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/dlthub/utils.py +522 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/echo.py +193 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/exceptions.py +39 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/formatters.py +287 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/requirements.py +63 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/source_detection.py +120 -0
- dlt_fabric-1.28.1/dlt/_workspace/cli/utils.py +385 -0
- dlt_fabric-1.28.1/dlt/_workspace/configuration.py +52 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/__init__.py +93 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_interval_store_freshness.py +291 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_job_ref.py +146 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_manifest_worker.py +35 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_run_helpers.py +490 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_run_typing.py +37 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_run_views.py +77 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/_trigger_helpers.py +348 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/configuration.py +57 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/decorators.py +589 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/detectors.py +263 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/exceptions.py +175 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/file_selector.py +119 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/freshness.py +208 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/interval.py +330 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/__init__.py +29 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/_launcher.py +78 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/dashboard.py +20 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/job.py +232 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/marimo.py +51 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/mcp.py +78 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/module.py +30 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/launchers/streamlit.py +52 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/manifest.py +692 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/package_builder.py +156 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/requirements.py +627 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/trigger.py +113 -0
- dlt_fabric-1.28.1/dlt/_workspace/deployment/typing.py +302 -0
- dlt_fabric-1.28.1/dlt/_workspace/exceptions.py +18 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/config.py +51 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/const.py +100 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/dlt_dashboard.py +1022 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/dlt_dashboard_styles.css +155 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/runner.py +171 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/strings.py +285 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/typing.py +40 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/__init__.py +27 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/data_quality.py +149 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/formatters.py +97 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/home.py +185 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/pipeline.py +196 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/queries.py +212 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/schema.py +198 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/trace.py +163 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/ui.py +217 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/dashboard/utils/visualization.py +225 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/runtime/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/_workspace/helpers/runtime/runtime_artifacts.py +191 -0
- dlt_fabric-1.28.1/dlt/_workspace/known_sections.py +8 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/__init__.py +14 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/context.py +106 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/prompts/__init__.py +1 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/prompts/pipeline.py +3 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/server.py +150 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/tools/__init__.py +3 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/tools/_ai_context_api_client.py +42 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/tools/context_tools.py +33 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/tools/data_tools.py +340 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/tools/secrets_tools.py +66 -0
- dlt_fabric-1.28.1/dlt/_workspace/mcp/tools/toolkit_tools.py +45 -0
- dlt_fabric-1.28.1/dlt/_workspace/profile.py +43 -0
- dlt_fabric-1.28.1/dlt/_workspace/providers.py +34 -0
- dlt_fabric-1.28.1/dlt/_workspace/run_context.py +55 -0
- dlt_fabric-1.28.1/dlt/_workspace/typing.py +54 -0
- dlt_fabric-1.28.1/dlt/common/__init__.py +8 -0
- dlt_fabric-1.28.1/dlt/common/arithmetics.py +49 -0
- dlt_fabric-1.28.1/dlt/common/configuration/__init__.py +36 -0
- dlt_fabric-1.28.1/dlt/common/configuration/accessors.py +170 -0
- dlt_fabric-1.28.1/dlt/common/configuration/const.py +8 -0
- dlt_fabric-1.28.1/dlt/common/configuration/container.py +256 -0
- dlt_fabric-1.28.1/dlt/common/configuration/exceptions.py +402 -0
- dlt_fabric-1.28.1/dlt/common/configuration/inject.py +319 -0
- dlt_fabric-1.28.1/dlt/common/configuration/plugins.py +206 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/__init__.py +33 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/airflow.py +46 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/context.py +40 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/dictionary.py +37 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/doc.py +187 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/environ.py +58 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/google_secrets.py +187 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/provider.py +79 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/toml.py +258 -0
- dlt_fabric-1.28.1/dlt/common/configuration/providers/vault.py +170 -0
- dlt_fabric-1.28.1/dlt/common/configuration/resolve.py +669 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/__init__.py +73 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/api_credentials.py +45 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/aws_credentials.py +276 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/azure_credentials.py +263 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/base_configuration.py +606 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/config_providers_context.py +167 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/config_section_context.py +73 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/connection_string_credentials.py +94 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/exceptions.py +87 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/gcp_credentials.py +417 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/hf_credentials.py +38 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/known_sections.py +46 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/mixins.py +31 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/pluggable_run_context.py +279 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/runtime_configuration.py +74 -0
- dlt_fabric-1.28.1/dlt/common/configuration/specs/sftp_credentials.py +102 -0
- dlt_fabric-1.28.1/dlt/common/configuration/utils.py +267 -0
- dlt_fabric-1.28.1/dlt/common/data_types/__init__.py +4 -0
- dlt_fabric-1.28.1/dlt/common/data_types/type_helpers.py +267 -0
- dlt_fabric-1.28.1/dlt/common/data_types/typing.py +19 -0
- dlt_fabric-1.28.1/dlt/common/data_writers/__init__.py +30 -0
- dlt_fabric-1.28.1/dlt/common/data_writers/buffered.py +296 -0
- dlt_fabric-1.28.1/dlt/common/data_writers/configuration.py +15 -0
- dlt_fabric-1.28.1/dlt/common/data_writers/escape.py +310 -0
- dlt_fabric-1.28.1/dlt/common/data_writers/exceptions.py +110 -0
- dlt_fabric-1.28.1/dlt/common/data_writers/writers.py +1022 -0
- dlt_fabric-1.28.1/dlt/common/destination/__init__.py +25 -0
- dlt_fabric-1.28.1/dlt/common/destination/capabilities.py +374 -0
- dlt_fabric-1.28.1/dlt/common/destination/client.py +810 -0
- dlt_fabric-1.28.1/dlt/common/destination/configuration.py +63 -0
- dlt_fabric-1.28.1/dlt/common/destination/dataset.py +159 -0
- dlt_fabric-1.28.1/dlt/common/destination/exceptions.py +311 -0
- dlt_fabric-1.28.1/dlt/common/destination/reference.py +445 -0
- dlt_fabric-1.28.1/dlt/common/destination/typing.py +15 -0
- dlt_fabric-1.28.1/dlt/common/destination/utils.py +321 -0
- dlt_fabric-1.28.1/dlt/common/exceptions.py +242 -0
- dlt_fabric-1.28.1/dlt/common/incremental/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/common/incremental/typing.py +31 -0
- dlt_fabric-1.28.1/dlt/common/json/__init__.py +310 -0
- dlt_fabric-1.28.1/dlt/common/json/_orjson.py +71 -0
- dlt_fabric-1.28.1/dlt/common/json/_simplejson.py +119 -0
- dlt_fabric-1.28.1/dlt/common/jsonpath.py +111 -0
- dlt_fabric-1.28.1/dlt/common/known_env.py +34 -0
- dlt_fabric-1.28.1/dlt/common/libs/__init__.py +76 -0
- dlt_fabric-1.28.1/dlt/common/libs/cryptography.py +75 -0
- dlt_fabric-1.28.1/dlt/common/libs/deltalake.py +223 -0
- dlt_fabric-1.28.1/dlt/common/libs/git.py +267 -0
- dlt_fabric-1.28.1/dlt/common/libs/hexbytes.py +88 -0
- dlt_fabric-1.28.1/dlt/common/libs/ibis.py +270 -0
- dlt_fabric-1.28.1/dlt/common/libs/numpy.py +6 -0
- dlt_fabric-1.28.1/dlt/common/libs/pandas.py +16 -0
- dlt_fabric-1.28.1/dlt/common/libs/pandas_sql.py +7 -0
- dlt_fabric-1.28.1/dlt/common/libs/polars.py +19 -0
- dlt_fabric-1.28.1/dlt/common/libs/pyarrow.py +1613 -0
- dlt_fabric-1.28.1/dlt/common/libs/pydantic.py +611 -0
- dlt_fabric-1.28.1/dlt/common/libs/pyiceberg.py +543 -0
- dlt_fabric-1.28.1/dlt/common/libs/sql_alchemy.py +45 -0
- dlt_fabric-1.28.1/dlt/common/libs/sql_alchemy_compat.py +6 -0
- dlt_fabric-1.28.1/dlt/common/libs/sql_alchemy_shims.py +444 -0
- dlt_fabric-1.28.1/dlt/common/libs/sqlglot.py +1122 -0
- dlt_fabric-1.28.1/dlt/common/libs/utils.py +40 -0
- dlt_fabric-1.28.1/dlt/common/logger.py +140 -0
- dlt_fabric-1.28.1/dlt/common/managed_thread_pool.py +27 -0
- dlt_fabric-1.28.1/dlt/common/metrics.py +110 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/__init__.py +9 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/exceptions.py +15 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/json/__init__.py +95 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/json/helpers.py +180 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/json/relational.py +495 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/json/relational_no_coercion.py +30 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/json/typing.py +14 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/__init__.py +3 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/direct.py +23 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/duck_case.py +28 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/exceptions.py +37 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/naming.py +137 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/s3_tables.py +33 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/snake_case.py +75 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/sql_ci_v1.py +12 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/naming/sql_cs_v1.py +44 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/typing.py +24 -0
- dlt_fabric-1.28.1/dlt/common/normalizers/utils.py +16 -0
- dlt_fabric-1.28.1/dlt/common/pendulum.py +108 -0
- dlt_fabric-1.28.1/dlt/common/pipeline.py +771 -0
- dlt_fabric-1.28.1/dlt/common/reflection/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/common/reflection/exceptions.py +22 -0
- dlt_fabric-1.28.1/dlt/common/reflection/inspect.py +127 -0
- dlt_fabric-1.28.1/dlt/common/reflection/ref.py +156 -0
- dlt_fabric-1.28.1/dlt/common/reflection/spec.py +129 -0
- dlt_fabric-1.28.1/dlt/common/reflection/utils.py +125 -0
- dlt_fabric-1.28.1/dlt/common/runners/__init__.py +16 -0
- dlt_fabric-1.28.1/dlt/common/runners/configuration.py +18 -0
- dlt_fabric-1.28.1/dlt/common/runners/pool_runner.py +282 -0
- dlt_fabric-1.28.1/dlt/common/runners/runnable.py +100 -0
- dlt_fabric-1.28.1/dlt/common/runners/stdout.py +147 -0
- dlt_fabric-1.28.1/dlt/common/runners/synth_pickle.py +81 -0
- dlt_fabric-1.28.1/dlt/common/runners/typing.py +6 -0
- dlt_fabric-1.28.1/dlt/common/runners/venv.py +214 -0
- dlt_fabric-1.28.1/dlt/common/runtime/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/common/runtime/anon_tracker.py +239 -0
- dlt_fabric-1.28.1/dlt/common/runtime/collector.py +476 -0
- dlt_fabric-1.28.1/dlt/common/runtime/collector_base.py +98 -0
- dlt_fabric-1.28.1/dlt/common/runtime/exceptions.py +10 -0
- dlt_fabric-1.28.1/dlt/common/runtime/exec_info.py +310 -0
- dlt_fabric-1.28.1/dlt/common/runtime/init.py +66 -0
- dlt_fabric-1.28.1/dlt/common/runtime/json_logging.py +209 -0
- dlt_fabric-1.28.1/dlt/common/runtime/run_context.py +318 -0
- dlt_fabric-1.28.1/dlt/common/runtime/sentry.py +78 -0
- dlt_fabric-1.28.1/dlt/common/runtime/signals.py +156 -0
- dlt_fabric-1.28.1/dlt/common/runtime/slack.py +15 -0
- dlt_fabric-1.28.1/dlt/common/runtime/telemetry.py +149 -0
- dlt_fabric-1.28.1/dlt/common/runtime/tracking.py +31 -0
- dlt_fabric-1.28.1/dlt/common/runtime/typing.py +45 -0
- dlt_fabric-1.28.1/dlt/common/schema/__init__.py +32 -0
- dlt_fabric-1.28.1/dlt/common/schema/configuration.py +18 -0
- dlt_fabric-1.28.1/dlt/common/schema/detections.py +84 -0
- dlt_fabric-1.28.1/dlt/common/schema/exceptions.py +318 -0
- dlt_fabric-1.28.1/dlt/common/schema/migrations.py +198 -0
- dlt_fabric-1.28.1/dlt/common/schema/normalizers.py +197 -0
- dlt_fabric-1.28.1/dlt/common/schema/schema.py +1331 -0
- dlt_fabric-1.28.1/dlt/common/schema/typing.py +410 -0
- dlt_fabric-1.28.1/dlt/common/schema/utils.py +1503 -0
- dlt_fabric-1.28.1/dlt/common/storages/__init__.py +51 -0
- dlt_fabric-1.28.1/dlt/common/storages/configuration.py +481 -0
- dlt_fabric-1.28.1/dlt/common/storages/data_item_storage.py +113 -0
- dlt_fabric-1.28.1/dlt/common/storages/exceptions.py +168 -0
- dlt_fabric-1.28.1/dlt/common/storages/file_storage.py +382 -0
- dlt_fabric-1.28.1/dlt/common/storages/fsspec_filesystem.py +418 -0
- dlt_fabric-1.28.1/dlt/common/storages/fsspecs/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/common/storages/fsspecs/google_drive.py +554 -0
- dlt_fabric-1.28.1/dlt/common/storages/live_schema_storage.py +73 -0
- dlt_fabric-1.28.1/dlt/common/storages/load_package.py +995 -0
- dlt_fabric-1.28.1/dlt/common/storages/load_storage.py +216 -0
- dlt_fabric-1.28.1/dlt/common/storages/normalize_storage.py +77 -0
- dlt_fabric-1.28.1/dlt/common/storages/schema_storage.py +298 -0
- dlt_fabric-1.28.1/dlt/common/storages/transactional_file.py +244 -0
- dlt_fabric-1.28.1/dlt/common/storages/versioned_storage.py +76 -0
- dlt_fabric-1.28.1/dlt/common/time.py +513 -0
- dlt_fabric-1.28.1/dlt/common/typing.py +604 -0
- dlt_fabric-1.28.1/dlt/common/utils.py +848 -0
- dlt_fabric-1.28.1/dlt/common/validation.py +242 -0
- dlt_fabric-1.28.1/dlt/common/versioned_state.py +69 -0
- dlt_fabric-1.28.1/dlt/common/warnings.py +159 -0
- dlt_fabric-1.28.1/dlt/common/wei.py +40 -0
- dlt_fabric-1.28.1/dlt/dataset/__init__.py +10 -0
- dlt_fabric-1.28.1/dlt/dataset/_incremental.py +240 -0
- dlt_fabric-1.28.1/dlt/dataset/_join.py +403 -0
- dlt_fabric-1.28.1/dlt/dataset/dataset.py +615 -0
- dlt_fabric-1.28.1/dlt/dataset/exceptions.py +29 -0
- dlt_fabric-1.28.1/dlt/dataset/lineage.py +186 -0
- dlt_fabric-1.28.1/dlt/dataset/relation.py +890 -0
- dlt_fabric-1.28.1/dlt/dataset/utils.py +97 -0
- dlt_fabric-1.28.1/dlt/destinations/__init__.py +48 -0
- dlt_fabric-1.28.1/dlt/destinations/_adbc_jobs.py +159 -0
- dlt_fabric-1.28.1/dlt/destinations/adapters.py +30 -0
- dlt_fabric-1.28.1/dlt/destinations/configuration.py +4 -0
- dlt_fabric-1.28.1/dlt/destinations/dataset/__init__.py +38 -0
- dlt_fabric-1.28.1/dlt/destinations/dataset/dataset.py +17 -0
- dlt_fabric-1.28.1/dlt/destinations/dataset/exceptions.py +22 -0
- dlt_fabric-1.28.1/dlt/destinations/dataset/factory.py +15 -0
- dlt_fabric-1.28.1/dlt/destinations/dataset/relation.py +17 -0
- dlt_fabric-1.28.1/dlt/destinations/dataset/utils.py +14 -0
- dlt_fabric-1.28.1/dlt/destinations/decorators.py +305 -0
- dlt_fabric-1.28.1/dlt/destinations/exceptions.py +161 -0
- dlt_fabric-1.28.1/dlt/destinations/file_batching.py +88 -0
- dlt_fabric-1.28.1/dlt/destinations/fs_client.py +65 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/athena.py +498 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/athena_adapter.py +113 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/configuration.py +68 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/factory.py +236 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/sql_client.py +272 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/athena/utils.py +5 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/README.md +6 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/bigquery.py +621 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/bigquery_adapter.py +253 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/configuration.py +45 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/factory.py +217 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/sql_client.py +330 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/bigquery/warnings.py +18 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/clickhouse.py +511 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/clickhouse_adapter.py +201 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/configuration.py +104 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/factory.py +274 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/sql_client.py +369 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/typing.py +45 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/clickhouse/utils.py +39 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/configuration.py +293 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/databricks.py +897 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/databricks_adapter.py +228 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/factory.py +240 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/sql_client.py +184 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/databricks/typing.py +14 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/destination/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/destination/configuration.py +43 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/destination/destination.py +100 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/destination/factory.py +185 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dremio/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dremio/configuration.py +44 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dremio/dremio.py +179 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dremio/factory.py +156 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dremio/pydremio.py +438 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dremio/sql_client.py +187 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/duckdb/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/duckdb/configuration.py +322 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/duckdb/duck.py +106 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/duckdb/exceptions.py +21 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/duckdb/factory.py +230 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/duckdb/sql_client.py +785 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/ducklake/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/ducklake/configuration.py +175 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/ducklake/ducklake.py +227 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/ducklake/factory.py +94 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/ducklake/sql_client.py +186 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dummy/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dummy/configuration.py +51 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dummy/dummy.py +233 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/dummy/factory.py +77 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/fabric/__init__.py +12 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/fabric/configuration.py +206 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/fabric/fabric.py +327 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/fabric/factory.py +148 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/fabric/sql_client.py +29 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/configuration.py +69 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/factory.py +194 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/filesystem.py +1652 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/iceberg_adapter.py +263 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/iceberg_partition_spec.py +128 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/sql_client.py +261 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/filesystem/typing.py +21 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/configuration.py +449 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/exceptions.py +88 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/factory.py +119 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/jobs.py +169 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/lance_adapter.py +78 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/lance_client.py +709 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/sql_client.py +100 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/type_mapper.py +25 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lance/utils.py +62 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/__init__.py +1 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/configuration.py +200 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/exceptions.py +47 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/factory.py +117 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/jobs.py +152 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/lancedb_adapter.py +78 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/lancedb_client.py +683 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/schema.py +105 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/sql_client.py +102 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/type_mapper.py +64 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/utils.py +125 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/lancedb/warnings.py +13 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/motherduck/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/motherduck/configuration.py +143 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/motherduck/factory.py +64 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/motherduck/motherduck.py +26 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/motherduck/sql_client.py +26 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/mssql/README.md +5 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/mssql/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/mssql/configuration.py +358 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/mssql/factory.py +217 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/mssql/mssql.py +224 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/mssql/sql_client.py +199 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/README.md +5 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/configuration.py +53 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/factory.py +226 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/postgres.py +199 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/postgres_adapter.py +63 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/postgres/sql_client.py +165 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/configuration.py +159 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/exceptions.py +11 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/factory.py +87 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/qdrant_adapter.py +60 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/qdrant_job_client.py +541 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/qdrant/warnings.py +12 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/redshift/README.md +23 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/redshift/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/redshift/configuration.py +35 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/redshift/factory.py +222 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/redshift/redshift.py +228 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/snowflake/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/snowflake/configuration.py +186 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/snowflake/factory.py +216 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/snowflake/snowflake.py +295 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/snowflake/sql_client.py +208 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/snowflake/utils.py +225 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/alter_table.py +91 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/configuration.py +265 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/db_api_client.py +462 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/dialect.py +237 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/factory.py +145 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/load_jobs.py +275 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/merge_job.py +474 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/sqlalchemy_job_client.py +355 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/sqlalchemy/type_mapper.py +302 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/synapse/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/synapse/configuration.py +50 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/synapse/factory.py +174 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/synapse/sql_client.py +16 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/synapse/synapse.py +266 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/synapse/synapse_adapter.py +51 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/README.md +21 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/ci_naming.py +13 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/configuration.py +71 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/exceptions.py +22 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/factory.py +112 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/naming.py +67 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/weaviate_adapter.py +95 -0
- dlt_fabric-1.28.1/dlt/destinations/impl/weaviate/weaviate_client.py +1106 -0
- dlt_fabric-1.28.1/dlt/destinations/insert_job_client.py +115 -0
- dlt_fabric-1.28.1/dlt/destinations/job_client_impl.py +989 -0
- dlt_fabric-1.28.1/dlt/destinations/job_impl.py +229 -0
- dlt_fabric-1.28.1/dlt/destinations/path_utils.py +306 -0
- dlt_fabric-1.28.1/dlt/destinations/queries.py +92 -0
- dlt_fabric-1.28.1/dlt/destinations/sql_client.py +510 -0
- dlt_fabric-1.28.1/dlt/destinations/sql_jobs.py +1030 -0
- dlt_fabric-1.28.1/dlt/destinations/type_mapping.py +146 -0
- dlt_fabric-1.28.1/dlt/destinations/typing.py +16 -0
- dlt_fabric-1.28.1/dlt/destinations/utils.py +310 -0
- dlt_fabric-1.28.1/dlt/extract/__init__.py +27 -0
- dlt_fabric-1.28.1/dlt/extract/concurrency.py +257 -0
- dlt_fabric-1.28.1/dlt/extract/decorators.py +1076 -0
- dlt_fabric-1.28.1/dlt/extract/exceptions.py +427 -0
- dlt_fabric-1.28.1/dlt/extract/extract.py +626 -0
- dlt_fabric-1.28.1/dlt/extract/extractors.py +572 -0
- dlt_fabric-1.28.1/dlt/extract/hints.py +859 -0
- dlt_fabric-1.28.1/dlt/extract/incremental/__init__.py +971 -0
- dlt_fabric-1.28.1/dlt/extract/incremental/context.py +87 -0
- dlt_fabric-1.28.1/dlt/extract/incremental/exceptions.py +82 -0
- dlt_fabric-1.28.1/dlt/extract/incremental/lag.py +121 -0
- dlt_fabric-1.28.1/dlt/extract/incremental/transform.py +645 -0
- dlt_fabric-1.28.1/dlt/extract/items.py +134 -0
- dlt_fabric-1.28.1/dlt/extract/items_transform.py +257 -0
- dlt_fabric-1.28.1/dlt/extract/pipe.py +487 -0
- dlt_fabric-1.28.1/dlt/extract/pipe_iterator.py +397 -0
- dlt_fabric-1.28.1/dlt/extract/reference.py +261 -0
- dlt_fabric-1.28.1/dlt/extract/resource.py +965 -0
- dlt_fabric-1.28.1/dlt/extract/source.py +710 -0
- dlt_fabric-1.28.1/dlt/extract/state.py +202 -0
- dlt_fabric-1.28.1/dlt/extract/storage.py +111 -0
- dlt_fabric-1.28.1/dlt/extract/utils.py +348 -0
- dlt_fabric-1.28.1/dlt/extract/validation.py +180 -0
- dlt_fabric-1.28.1/dlt/extract/wrappers.py +15 -0
- dlt_fabric-1.28.1/dlt/helpers/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/helpers/airflow_helper.py +558 -0
- dlt_fabric-1.28.1/dlt/helpers/dbml.py +534 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt/__init__.py +101 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt/configuration.py +29 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt/dbt_utils.py +149 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt/exceptions.py +33 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt/profiles.yml +238 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt/runner.py +341 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt_cloud/__init__.py +140 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt_cloud/client.py +141 -0
- dlt_fabric-1.28.1/dlt/helpers/dbt_cloud/configuration.py +21 -0
- dlt_fabric-1.28.1/dlt/helpers/graphviz.py +533 -0
- dlt_fabric-1.28.1/dlt/helpers/ibis.py +324 -0
- dlt_fabric-1.28.1/dlt/helpers/marimo/README.md +221 -0
- dlt_fabric-1.28.1/dlt/helpers/marimo/__init__.py +71 -0
- dlt_fabric-1.28.1/dlt/helpers/marimo/_load_package_viewer.py +39 -0
- dlt_fabric-1.28.1/dlt/helpers/marimo/_pipeline_selector.py +42 -0
- dlt_fabric-1.28.1/dlt/helpers/marimo/_schema_viewer.py +193 -0
- dlt_fabric-1.28.1/dlt/helpers/marimo/utils.py +104 -0
- dlt_fabric-1.28.1/dlt/helpers/mermaid.py +130 -0
- dlt_fabric-1.28.1/dlt/hub/__init__.py +38 -0
- dlt_fabric-1.28.1/dlt/hub/current.py +1 -0
- dlt_fabric-1.28.1/dlt/hub/data_quality.py +1 -0
- dlt_fabric-1.28.1/dlt/hub/run.py +5 -0
- dlt_fabric-1.28.1/dlt/load/__init__.py +3 -0
- dlt_fabric-1.28.1/dlt/load/configuration.py +29 -0
- dlt_fabric-1.28.1/dlt/load/exceptions.py +86 -0
- dlt_fabric-1.28.1/dlt/load/load.py +911 -0
- dlt_fabric-1.28.1/dlt/load/utils.py +327 -0
- dlt_fabric-1.28.1/dlt/normalize/__init__.py +3 -0
- dlt_fabric-1.28.1/dlt/normalize/configuration.py +43 -0
- dlt_fabric-1.28.1/dlt/normalize/exceptions.py +28 -0
- dlt_fabric-1.28.1/dlt/normalize/items_normalizers/__init__.py +13 -0
- dlt_fabric-1.28.1/dlt/normalize/items_normalizers/arrow.py +206 -0
- dlt_fabric-1.28.1/dlt/normalize/items_normalizers/base.py +74 -0
- dlt_fabric-1.28.1/dlt/normalize/items_normalizers/file_import.py +38 -0
- dlt_fabric-1.28.1/dlt/normalize/items_normalizers/jsonl.py +520 -0
- dlt_fabric-1.28.1/dlt/normalize/items_normalizers/model.py +172 -0
- dlt_fabric-1.28.1/dlt/normalize/normalize.py +385 -0
- dlt_fabric-1.28.1/dlt/normalize/validate.py +149 -0
- dlt_fabric-1.28.1/dlt/normalize/worker.py +285 -0
- dlt_fabric-1.28.1/dlt/pipeline/__init__.py +386 -0
- dlt_fabric-1.28.1/dlt/pipeline/configuration.py +87 -0
- dlt_fabric-1.28.1/dlt/pipeline/current.py +75 -0
- dlt_fabric-1.28.1/dlt/pipeline/dbt.py +109 -0
- dlt_fabric-1.28.1/dlt/pipeline/drop.py +168 -0
- dlt_fabric-1.28.1/dlt/pipeline/exceptions.py +155 -0
- dlt_fabric-1.28.1/dlt/pipeline/helpers.py +193 -0
- dlt_fabric-1.28.1/dlt/pipeline/mark.py +18 -0
- dlt_fabric-1.28.1/dlt/pipeline/pipeline.py +2013 -0
- dlt_fabric-1.28.1/dlt/pipeline/platform.py +144 -0
- dlt_fabric-1.28.1/dlt/pipeline/progress.py +31 -0
- dlt_fabric-1.28.1/dlt/pipeline/state_sync.py +149 -0
- dlt_fabric-1.28.1/dlt/pipeline/trace.py +388 -0
- dlt_fabric-1.28.1/dlt/pipeline/track.py +144 -0
- dlt_fabric-1.28.1/dlt/pipeline/typing.py +3 -0
- dlt_fabric-1.28.1/dlt/pipeline/warnings.py +17 -0
- dlt_fabric-1.28.1/dlt/py.typed +0 -0
- dlt_fabric-1.28.1/dlt/reflection/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/reflection/names.py +24 -0
- dlt_fabric-1.28.1/dlt/reflection/script_inspector.py +88 -0
- dlt_fabric-1.28.1/dlt/reflection/script_visitor.py +136 -0
- dlt_fabric-1.28.1/dlt/sources/.gitignore +10 -0
- dlt_fabric-1.28.1/dlt/sources/__init__.py +19 -0
- dlt_fabric-1.28.1/dlt/sources/config.py +2 -0
- dlt_fabric-1.28.1/dlt/sources/credentials.py +35 -0
- dlt_fabric-1.28.1/dlt/sources/filesystem/__init__.py +167 -0
- dlt_fabric-1.28.1/dlt/sources/filesystem/helpers.py +104 -0
- dlt_fabric-1.28.1/dlt/sources/filesystem/readers.py +159 -0
- dlt_fabric-1.28.1/dlt/sources/filesystem/settings.py +1 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/__init__.py +0 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/requests/__init__.py +70 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/requests/retry.py +261 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/requests/session.py +61 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/requests/typing.py +6 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/__init__.py +49 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/auth.py +296 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/client.py +432 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/detector.py +228 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/exceptions.py +17 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/paginators.py +1001 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/redaction.py +37 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/typing.py +17 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/rest_client/utils.py +16 -0
- dlt_fabric-1.28.1/dlt/sources/helpers/transform.py +146 -0
- dlt_fabric-1.28.1/dlt/sources/rest_api/__init__.py +415 -0
- dlt_fabric-1.28.1/dlt/sources/rest_api/config_setup.py +1139 -0
- dlt_fabric-1.28.1/dlt/sources/rest_api/typing.py +300 -0
- dlt_fabric-1.28.1/dlt/sources/rest_api/utils.py +22 -0
- dlt_fabric-1.28.1/dlt/sources/sql_database/__init__.py +371 -0
- dlt_fabric-1.28.1/dlt/sources/sql_database/arrow_helpers.py +26 -0
- dlt_fabric-1.28.1/dlt/sources/sql_database/helpers.py +693 -0
- dlt_fabric-1.28.1/dlt/sources/sql_database/schema_types.py +267 -0
- dlt_fabric-1.28.1/dlt/version.py +60 -0
- dlt_fabric-1.28.1/pyproject.toml +558 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
|
|
2
|
+
# Claude Code
|
|
3
|
+
.worktrees
|
|
4
|
+
CLAUDE.local.md
|
|
5
|
+
.claude/settings.local.json
|
|
6
|
+
.claude/*lock
|
|
7
|
+
|
|
8
|
+
# temp requirements generated by uv
|
|
9
|
+
_gen_requirements*.txt
|
|
10
|
+
_storage*
|
|
11
|
+
**/_storage
|
|
12
|
+
_test_storage
|
|
13
|
+
**/_test_storage
|
|
14
|
+
_secrets/
|
|
15
|
+
_backup_storage/
|
|
16
|
+
experiments/*
|
|
17
|
+
secrets.toml
|
|
18
|
+
*.session.sql
|
|
19
|
+
*.duckdb
|
|
20
|
+
*.ducklake
|
|
21
|
+
**.ducklake.files/
|
|
22
|
+
*.wal
|
|
23
|
+
logs/
|
|
24
|
+
.continuerules
|
|
25
|
+
**/.dlt/data
|
|
26
|
+
**/.dlt/state
|
|
27
|
+
|
|
28
|
+
# playwright dumps
|
|
29
|
+
test-results/
|
|
30
|
+
# temporary directory used by marimo for layout, caching, HTML snapshots; see marimo docs
|
|
31
|
+
**/__marimo__
|
|
32
|
+
**.lancedb
|
|
33
|
+
*.lance
|
|
34
|
+
|
|
35
|
+
# Byte-compiled / optimized / DLL files
|
|
36
|
+
**/__pycache__/
|
|
37
|
+
**/*.py[cod]
|
|
38
|
+
**/*$py.class
|
|
39
|
+
|
|
40
|
+
# C extensions
|
|
41
|
+
**/*.so
|
|
42
|
+
|
|
43
|
+
# Distribution / packaging
|
|
44
|
+
**/.Python
|
|
45
|
+
**/build/
|
|
46
|
+
**/develop-eggs/
|
|
47
|
+
**/dist/
|
|
48
|
+
**/downloads/
|
|
49
|
+
**/eggs/
|
|
50
|
+
**/.eggs/
|
|
51
|
+
**/lib/
|
|
52
|
+
**/lib64/
|
|
53
|
+
**/parts/
|
|
54
|
+
**/sdist/
|
|
55
|
+
**/var/
|
|
56
|
+
**/wheels/
|
|
57
|
+
**/*.egg-info/
|
|
58
|
+
**/.installed.cfg
|
|
59
|
+
**/*.egg
|
|
60
|
+
**/MANIFEST
|
|
61
|
+
|
|
62
|
+
# PyInstaller
|
|
63
|
+
# Usually these files are written by a python script from a template
|
|
64
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
65
|
+
**/*.manifest
|
|
66
|
+
**/*.spec
|
|
67
|
+
|
|
68
|
+
# Installer logs
|
|
69
|
+
**/pip-log.txt
|
|
70
|
+
**/pip-delete-this-directory.txt
|
|
71
|
+
|
|
72
|
+
# Unit test / coverage reports
|
|
73
|
+
**/htmlcov/
|
|
74
|
+
**/.tox/
|
|
75
|
+
**/.coverage
|
|
76
|
+
**/.coverage.*
|
|
77
|
+
**/.cache
|
|
78
|
+
**/nosetests.xml
|
|
79
|
+
**/coverage.xml
|
|
80
|
+
**/*.cover
|
|
81
|
+
**/.hypothesis/
|
|
82
|
+
**/.pytest_cache/
|
|
83
|
+
**/htmlcov/
|
|
84
|
+
|
|
85
|
+
# Translations
|
|
86
|
+
**/*.mo
|
|
87
|
+
**/*.pot
|
|
88
|
+
|
|
89
|
+
# Django stuff:
|
|
90
|
+
**/*.log
|
|
91
|
+
**/.static_storage/
|
|
92
|
+
**/.media/
|
|
93
|
+
**/local_settings.py
|
|
94
|
+
|
|
95
|
+
# Flask stuff:
|
|
96
|
+
**/instance/
|
|
97
|
+
**/.webassets-cache
|
|
98
|
+
|
|
99
|
+
# Scrapy stuff:
|
|
100
|
+
**/.scrapy
|
|
101
|
+
|
|
102
|
+
# Sphinx documentation
|
|
103
|
+
**/docs/_build/
|
|
104
|
+
|
|
105
|
+
# PyBuilder
|
|
106
|
+
**/target/
|
|
107
|
+
|
|
108
|
+
# Jupyter Notebook
|
|
109
|
+
**/.ipynb_checkpoints
|
|
110
|
+
|
|
111
|
+
# pyenv
|
|
112
|
+
**/.python-version
|
|
113
|
+
|
|
114
|
+
# celery beat schedule file
|
|
115
|
+
**/celerybeat-schedule
|
|
116
|
+
|
|
117
|
+
# SageMath parsed files
|
|
118
|
+
**/*.sage.py
|
|
119
|
+
|
|
120
|
+
# Environments
|
|
121
|
+
**/.env
|
|
122
|
+
**/.venv
|
|
123
|
+
**/env/
|
|
124
|
+
**/venv/
|
|
125
|
+
**/ENV/
|
|
126
|
+
**/env.bak/
|
|
127
|
+
**/venv.bak/
|
|
128
|
+
**/.direnv
|
|
129
|
+
|
|
130
|
+
# Spyder project settings
|
|
131
|
+
**/.spyderproject
|
|
132
|
+
**/.spyproject
|
|
133
|
+
|
|
134
|
+
# Rope project settings
|
|
135
|
+
**/.ropeproject
|
|
136
|
+
|
|
137
|
+
# mkdocs documentation
|
|
138
|
+
**/site
|
|
139
|
+
|
|
140
|
+
# mypy
|
|
141
|
+
**/.mypy_cache/
|
|
142
|
+
|
|
143
|
+
# jetbrains cache
|
|
144
|
+
**/.idea
|
|
145
|
+
|
|
146
|
+
# VS Code
|
|
147
|
+
**/.vscode
|
|
148
|
+
|
|
149
|
+
# Zed IDE
|
|
150
|
+
**/.zed
|
|
151
|
+
|
|
152
|
+
# MAC OS X
|
|
153
|
+
**/.DS_Store
|
|
154
|
+
.DS_Store
|
|
155
|
+
|
|
156
|
+
# temp
|
|
157
|
+
tmp
|
|
158
|
+
**/tmp
|
|
159
|
+
|
|
160
|
+
# Qdrant embedding models cache
|
|
161
|
+
local_cache/
|
|
162
|
+
|
|
163
|
+
# test file for examples are generated and should not be committed
|
|
164
|
+
docs/examples/**/test*.py
|
|
165
|
+
compiled_requirements.txt
|
|
166
|
+
|
|
167
|
+
# docker folder for running tests as other OS
|
|
168
|
+
tests/.docker/
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Apache License
|
|
4
|
+
Version 2.0, January 2004
|
|
5
|
+
http://www.apache.org/licenses/
|
|
6
|
+
|
|
7
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
8
|
+
|
|
9
|
+
1. Definitions.
|
|
10
|
+
|
|
11
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
12
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
13
|
+
|
|
14
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
15
|
+
the copyright owner that is granting the License.
|
|
16
|
+
|
|
17
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
18
|
+
other entities that control, are controlled by, or are under common
|
|
19
|
+
control with that entity. For the purposes of this definition,
|
|
20
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
21
|
+
direction or management of such entity, whether by contract or
|
|
22
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
23
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
24
|
+
|
|
25
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
26
|
+
exercising permissions granted by this License.
|
|
27
|
+
|
|
28
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
29
|
+
including but not limited to software source code, documentation
|
|
30
|
+
source, and configuration files.
|
|
31
|
+
|
|
32
|
+
"Object" form shall mean any form resulting from mechanical
|
|
33
|
+
transformation or translation of a Source form, including but
|
|
34
|
+
not limited to compiled object code, generated documentation,
|
|
35
|
+
and conversions to other media types.
|
|
36
|
+
|
|
37
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
38
|
+
Object form, made available under the License, as indicated by a
|
|
39
|
+
copyright notice that is included in or attached to the work
|
|
40
|
+
(an example is provided in the Appendix below).
|
|
41
|
+
|
|
42
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
43
|
+
form, that is based on (or derived from) the Work and for which the
|
|
44
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
45
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
46
|
+
of this License, Derivative Works shall not include works that remain
|
|
47
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
48
|
+
the Work and Derivative Works thereof.
|
|
49
|
+
|
|
50
|
+
"Contribution" shall mean any work of authorship, including
|
|
51
|
+
the original version of the Work and any modifications or additions
|
|
52
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
53
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
54
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
55
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
56
|
+
means any form of electronic, verbal, or written communication sent
|
|
57
|
+
to the Licensor or its representatives, including but not limited to
|
|
58
|
+
communication on electronic mailing lists, source code control systems,
|
|
59
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
60
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
61
|
+
excluding communication that is conspicuously marked or otherwise
|
|
62
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
63
|
+
|
|
64
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
65
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
66
|
+
subsequently incorporated within the Work.
|
|
67
|
+
|
|
68
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
69
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
70
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
71
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
72
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
73
|
+
Work and such Derivative Works in Source or Object form.
|
|
74
|
+
|
|
75
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
76
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
77
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
78
|
+
(except as stated in this section) patent license to make, have made,
|
|
79
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
80
|
+
where such license applies only to those patent claims licensable
|
|
81
|
+
by such Contributor that are necessarily infringed by their
|
|
82
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
83
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
84
|
+
institute patent litigation against any entity (including a
|
|
85
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
86
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
87
|
+
or contributory patent infringement, then any patent licenses
|
|
88
|
+
granted to You under this License for that Work shall terminate
|
|
89
|
+
as of the date such litigation is filed.
|
|
90
|
+
|
|
91
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
92
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
93
|
+
modifications, and in Source or Object form, provided that You
|
|
94
|
+
meet the following conditions:
|
|
95
|
+
|
|
96
|
+
(a) You must give any other recipients of the Work or
|
|
97
|
+
Derivative Works a copy of this License; and
|
|
98
|
+
|
|
99
|
+
(b) You must cause any modified files to carry prominent notices
|
|
100
|
+
stating that You changed the files; and
|
|
101
|
+
|
|
102
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
103
|
+
that You distribute, all copyright, patent, trademark, and
|
|
104
|
+
attribution notices from the Source form of the Work,
|
|
105
|
+
excluding those notices that do not pertain to any part of
|
|
106
|
+
the Derivative Works; and
|
|
107
|
+
|
|
108
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
109
|
+
distribution, then any Derivative Works that You distribute must
|
|
110
|
+
include a readable copy of the attribution notices contained
|
|
111
|
+
within such NOTICE file, excluding those notices that do not
|
|
112
|
+
pertain to any part of the Derivative Works, in at least one
|
|
113
|
+
of the following places: within a NOTICE text file distributed
|
|
114
|
+
as part of the Derivative Works; within the Source form or
|
|
115
|
+
documentation, if provided along with the Derivative Works; or,
|
|
116
|
+
within a display generated by the Derivative Works, if and
|
|
117
|
+
wherever such third-party notices normally appear. The contents
|
|
118
|
+
of the NOTICE file are for informational purposes only and
|
|
119
|
+
do not modify the License. You may add Your own attribution
|
|
120
|
+
notices within Derivative Works that You distribute, alongside
|
|
121
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
122
|
+
that such additional attribution notices cannot be construed
|
|
123
|
+
as modifying the License.
|
|
124
|
+
|
|
125
|
+
You may add Your own copyright statement to Your modifications and
|
|
126
|
+
may provide additional or different license terms and conditions
|
|
127
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
128
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
129
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
130
|
+
the conditions stated in this License.
|
|
131
|
+
|
|
132
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
133
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
134
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
135
|
+
this License, without any additional terms or conditions.
|
|
136
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
137
|
+
the terms of any separate license agreement you may have executed
|
|
138
|
+
with Licensor regarding such Contributions.
|
|
139
|
+
|
|
140
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
141
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
142
|
+
except as required for reasonable and customary use in describing the
|
|
143
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
144
|
+
|
|
145
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
146
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
147
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
148
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
149
|
+
implied, including, without limitation, any warranties or conditions
|
|
150
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
151
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
152
|
+
appropriateness of using or redistributing the Work and assume any
|
|
153
|
+
risks associated with Your exercise of permissions under this License.
|
|
154
|
+
|
|
155
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
156
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
157
|
+
unless required by applicable law (such as deliberate and grossly
|
|
158
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
159
|
+
liable to You for damages, including any direct, indirect, special,
|
|
160
|
+
incidental, or consequential damages of any character arising as a
|
|
161
|
+
result of this License or out of the use or inability to use the
|
|
162
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
163
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
164
|
+
other commercial damages or losses), even if such Contributor
|
|
165
|
+
has been advised of the possibility of such damages.
|
|
166
|
+
|
|
167
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
168
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
169
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
170
|
+
or other liability obligations and/or rights consistent with this
|
|
171
|
+
License. However, in accepting such obligations, You may act only
|
|
172
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
173
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
174
|
+
defend, and hold each Contributor harmless for any liability
|
|
175
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
176
|
+
of your accepting any such warranty or additional liability.
|
|
177
|
+
|
|
178
|
+
END OF TERMS AND CONDITIONS
|
|
179
|
+
|
|
180
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
181
|
+
|
|
182
|
+
To apply the Apache License to your work, attach the following
|
|
183
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
184
|
+
replaced with your own identifying information. (Don't include
|
|
185
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
186
|
+
comment syntax for the file format. We also recommend that a
|
|
187
|
+
file or class name and description of purpose be included on the
|
|
188
|
+
same "printed page" as the copyright notice for easier
|
|
189
|
+
identification within third-party archives.
|
|
190
|
+
|
|
191
|
+
Copyright 2022-2026 ScaleVector
|
|
192
|
+
|
|
193
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
194
|
+
you may not use this file except in compliance with the License.
|
|
195
|
+
You may obtain a copy of the License at
|
|
196
|
+
|
|
197
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
198
|
+
|
|
199
|
+
Unless required by applicable law or agreed to in writing, software
|
|
200
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
201
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
202
|
+
See the License for the specific language governing permissions and
|
|
203
|
+
limitations under the License.
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dlt-fabric
|
|
3
|
+
Version: 1.28.1
|
|
4
|
+
Summary: Maintained fork of dlt with fixes for the Microsoft Fabric Warehouse destination
|
|
5
|
+
Project-URL: Homepage, https://github.com/sdebruyn/dlt
|
|
6
|
+
Project-URL: Repository, https://github.com/sdebruyn/dlt
|
|
7
|
+
Project-URL: Upstream dlt, https://github.com/dlt-hub/dlt
|
|
8
|
+
Author-email: Sam Debruyn <sam@debruyn.dev>
|
|
9
|
+
Maintainer-email: Sam Debruyn <sam@debruyn.dev>
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
License-File: LICENSE.txt
|
|
12
|
+
Keywords: etl
|
|
13
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
18
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
24
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Python: <3.15,>=3.10
|
|
27
|
+
Requires-Dist: click>=7.1
|
|
28
|
+
Requires-Dist: fsspec>=2022.4.0
|
|
29
|
+
Requires-Dist: gitpython>=3.1.29
|
|
30
|
+
Requires-Dist: giturlparse>=0.10.0
|
|
31
|
+
Requires-Dist: humanize>=4.4.0
|
|
32
|
+
Requires-Dist: jsonpath-ng<1.8,>=1.5.3
|
|
33
|
+
Requires-Dist: orjson!=3.10.1,!=3.9.11,!=3.9.12,!=3.9.13,!=3.9.14,<4,>=3.6.7; platform_python_implementation != 'PyPy' and sys_platform != 'emscripten'
|
|
34
|
+
Requires-Dist: orjson>=3.10.1; platform_python_implementation != 'PyPy' and sys_platform != 'emscripten'
|
|
35
|
+
Requires-Dist: orjson>=3.11.0; python_version > '3.13'
|
|
36
|
+
Requires-Dist: packaging>=21.1
|
|
37
|
+
Requires-Dist: pathvalidate>=2.5.2
|
|
38
|
+
Requires-Dist: pendulum>=2.1.2
|
|
39
|
+
Requires-Dist: pendulum>=3.0.0; python_version > '3.13'
|
|
40
|
+
Requires-Dist: pluggy>=1.3.0
|
|
41
|
+
Requires-Dist: pytz>=2022.6
|
|
42
|
+
Requires-Dist: pywin32>=306; sys_platform == 'win32'
|
|
43
|
+
Requires-Dist: pyyaml>=5.4.1
|
|
44
|
+
Requires-Dist: requests>=2.26.0
|
|
45
|
+
Requires-Dist: requirements-parser>=0.5.0
|
|
46
|
+
Requires-Dist: rich-argparse>=1.6.0
|
|
47
|
+
Requires-Dist: semver>=3.0.0
|
|
48
|
+
Requires-Dist: setuptools>=65.6.0
|
|
49
|
+
Requires-Dist: simplejson>=3.17.5
|
|
50
|
+
Requires-Dist: sqlglot>=25.4.0
|
|
51
|
+
Requires-Dist: tenacity>=8.0.2
|
|
52
|
+
Requires-Dist: tomlkit>=0.11.3
|
|
53
|
+
Requires-Dist: typing-extensions>=4.8.0
|
|
54
|
+
Requires-Dist: tzdata>=2022.1
|
|
55
|
+
Requires-Dist: win-precise-time>=1.4.2; os_name == 'nt' and python_version < '3.13'
|
|
56
|
+
Provides-Extra: athena
|
|
57
|
+
Requires-Dist: botocore>=1.28; extra == 'athena'
|
|
58
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'athena'
|
|
59
|
+
Requires-Dist: pyathena>=2.9.6; extra == 'athena'
|
|
60
|
+
Requires-Dist: s3fs>=2022.4.0; extra == 'athena'
|
|
61
|
+
Provides-Extra: az
|
|
62
|
+
Requires-Dist: adlfs>=2024.7.0; extra == 'az'
|
|
63
|
+
Provides-Extra: bigquery
|
|
64
|
+
Requires-Dist: db-dtypes>=1.2.0; extra == 'bigquery'
|
|
65
|
+
Requires-Dist: gcsfs>=2022.4.0; extra == 'bigquery'
|
|
66
|
+
Requires-Dist: google-cloud-bigquery>=2.26.0; extra == 'bigquery'
|
|
67
|
+
Requires-Dist: grpcio>=1.50.0; extra == 'bigquery'
|
|
68
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'bigquery'
|
|
69
|
+
Provides-Extra: cli
|
|
70
|
+
Requires-Dist: cron-descriptor>=1.2.32; extra == 'cli'
|
|
71
|
+
Requires-Dist: pip>=23.0.0; extra == 'cli'
|
|
72
|
+
Requires-Dist: pipdeptree<2.10,>=2.9.3; extra == 'cli'
|
|
73
|
+
Provides-Extra: clickhouse
|
|
74
|
+
Requires-Dist: adlfs>=2024.7.0; extra == 'clickhouse'
|
|
75
|
+
Requires-Dist: clickhouse-connect>=0.7.7; extra == 'clickhouse'
|
|
76
|
+
Requires-Dist: clickhouse-driver>=0.2.7; extra == 'clickhouse'
|
|
77
|
+
Requires-Dist: gcsfs>=2022.4.0; extra == 'clickhouse'
|
|
78
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'clickhouse'
|
|
79
|
+
Requires-Dist: s3fs>=2022.4.0; extra == 'clickhouse'
|
|
80
|
+
Provides-Extra: databricks
|
|
81
|
+
Requires-Dist: databricks-sdk>=0.38.0; extra == 'databricks'
|
|
82
|
+
Requires-Dist: databricks-sql-connector>=2.9.3; (python_version <= '3.12') and extra == 'databricks'
|
|
83
|
+
Requires-Dist: databricks-sql-connector>=3.6.0; (python_version >= '3.13') and extra == 'databricks'
|
|
84
|
+
Requires-Dist: databricks-zerobus-ingest-sdk>=1.2.0; ((platform_system == 'Linux' and (platform_machine == 'x86_64' or platform_machine == 'aarch64')) or (platform_system == 'Windows' and (platform_machine == 'AMD64' or platform_machine == 'x86_64'))) and extra == 'databricks'
|
|
85
|
+
Provides-Extra: dbml
|
|
86
|
+
Requires-Dist: pydbml; extra == 'dbml'
|
|
87
|
+
Provides-Extra: deltalake
|
|
88
|
+
Requires-Dist: deltalake>=0.25.1; extra == 'deltalake'
|
|
89
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'deltalake'
|
|
90
|
+
Provides-Extra: dremio
|
|
91
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'dremio'
|
|
92
|
+
Provides-Extra: duckdb
|
|
93
|
+
Requires-Dist: duckdb>=0.9; extra == 'duckdb'
|
|
94
|
+
Provides-Extra: ducklake
|
|
95
|
+
Requires-Dist: duckdb>=1.2.0; extra == 'ducklake'
|
|
96
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'ducklake'
|
|
97
|
+
Provides-Extra: fabric
|
|
98
|
+
Requires-Dist: adlfs>=2024.7.0; extra == 'fabric'
|
|
99
|
+
Requires-Dist: mssql-python!=1.7.0,!=1.7.1,>=1.4.0; extra == 'fabric'
|
|
100
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'fabric'
|
|
101
|
+
Provides-Extra: filesystem
|
|
102
|
+
Requires-Dist: botocore>=1.28; extra == 'filesystem'
|
|
103
|
+
Requires-Dist: s3fs>=2022.4.0; extra == 'filesystem'
|
|
104
|
+
Provides-Extra: gcp
|
|
105
|
+
Requires-Dist: db-dtypes>=1.2.0; extra == 'gcp'
|
|
106
|
+
Requires-Dist: gcsfs>=2022.4.0; extra == 'gcp'
|
|
107
|
+
Requires-Dist: google-cloud-bigquery>=2.26.0; extra == 'gcp'
|
|
108
|
+
Requires-Dist: grpcio>=1.50.0; extra == 'gcp'
|
|
109
|
+
Provides-Extra: gs
|
|
110
|
+
Requires-Dist: gcsfs>=2022.4.0; extra == 'gs'
|
|
111
|
+
Provides-Extra: hf
|
|
112
|
+
Requires-Dist: huggingface-hub>=1.4.1; extra == 'hf'
|
|
113
|
+
Requires-Dist: pyarrow>=21.0.0; extra == 'hf'
|
|
114
|
+
Provides-Extra: http
|
|
115
|
+
Requires-Dist: aiohttp>3.9.0; extra == 'http'
|
|
116
|
+
Provides-Extra: hub
|
|
117
|
+
Requires-Dist: dlthub-client<0.29,>=0.27.7; extra == 'hub'
|
|
118
|
+
Requires-Dist: dlthub<0.29,>=0.27.0; extra == 'hub'
|
|
119
|
+
Provides-Extra: lance
|
|
120
|
+
Requires-Dist: duckdb>=1.4.3; extra == 'lance'
|
|
121
|
+
Requires-Dist: ibis-framework>=12.0.0; extra == 'lance'
|
|
122
|
+
Requires-Dist: lancedb>=0.33.0; extra == 'lance'
|
|
123
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'lance'
|
|
124
|
+
Requires-Dist: pylance<8,>=6.0.1; extra == 'lance'
|
|
125
|
+
Provides-Extra: lancedb
|
|
126
|
+
Requires-Dist: duckdb>=1.4.3; extra == 'lancedb'
|
|
127
|
+
Requires-Dist: ibis-framework>=12.0.0; extra == 'lancedb'
|
|
128
|
+
Requires-Dist: lancedb>=0.22.0; extra == 'lancedb'
|
|
129
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'lancedb'
|
|
130
|
+
Provides-Extra: motherduck
|
|
131
|
+
Requires-Dist: duckdb>=0.9; extra == 'motherduck'
|
|
132
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'motherduck'
|
|
133
|
+
Provides-Extra: mssql
|
|
134
|
+
Requires-Dist: mssql-python!=1.7.0,!=1.7.1,>=1.4.0; extra == 'mssql'
|
|
135
|
+
Provides-Extra: oracle
|
|
136
|
+
Requires-Dist: oracledb>=3.4.1; extra == 'oracle'
|
|
137
|
+
Provides-Extra: parquet
|
|
138
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'parquet'
|
|
139
|
+
Provides-Extra: polars
|
|
140
|
+
Requires-Dist: polars>=1.0.0; extra == 'polars'
|
|
141
|
+
Provides-Extra: postgis
|
|
142
|
+
Requires-Dist: psycopg2-binary>=2.9.1; extra == 'postgis'
|
|
143
|
+
Provides-Extra: postgres
|
|
144
|
+
Requires-Dist: psycopg2-binary>=2.9.1; extra == 'postgres'
|
|
145
|
+
Provides-Extra: pyiceberg
|
|
146
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'pyiceberg'
|
|
147
|
+
Requires-Dist: pyiceberg-core>=0.6.0; extra == 'pyiceberg'
|
|
148
|
+
Requires-Dist: pyiceberg>=0.9.1; extra == 'pyiceberg'
|
|
149
|
+
Requires-Dist: sqlalchemy>=1.4; extra == 'pyiceberg'
|
|
150
|
+
Provides-Extra: qdrant
|
|
151
|
+
Requires-Dist: qdrant-client>=1.8; (python_version > '3.13') and extra == 'qdrant'
|
|
152
|
+
Requires-Dist: qdrant-client[fastembed]>=1.8; (python_version <= '3.13') and extra == 'qdrant'
|
|
153
|
+
Provides-Extra: redshift
|
|
154
|
+
Requires-Dist: psycopg2-binary>=2.9.1; extra == 'redshift'
|
|
155
|
+
Provides-Extra: s3
|
|
156
|
+
Requires-Dist: botocore>=1.28; extra == 's3'
|
|
157
|
+
Requires-Dist: s3fs>=2022.4.0; extra == 's3'
|
|
158
|
+
Provides-Extra: sftp
|
|
159
|
+
Requires-Dist: paramiko<5,>=3.3.0; extra == 'sftp'
|
|
160
|
+
Provides-Extra: snowflake
|
|
161
|
+
Requires-Dist: snowflake-connector-python>=3.5.0; extra == 'snowflake'
|
|
162
|
+
Requires-Dist: snowflake-connector-python>=4.4.0; (python_version >= '3.14') and extra == 'snowflake'
|
|
163
|
+
Provides-Extra: sql-database
|
|
164
|
+
Requires-Dist: sqlalchemy>=1.4; extra == 'sql-database'
|
|
165
|
+
Provides-Extra: sqlalchemy
|
|
166
|
+
Requires-Dist: alembic>1.10.0; extra == 'sqlalchemy'
|
|
167
|
+
Requires-Dist: sqlalchemy>=1.4; extra == 'sqlalchemy'
|
|
168
|
+
Provides-Extra: synapse
|
|
169
|
+
Requires-Dist: adlfs>=2024.7.0; extra == 'synapse'
|
|
170
|
+
Requires-Dist: mssql-python!=1.7.0,!=1.7.1,>=1.4.0; extra == 'synapse'
|
|
171
|
+
Requires-Dist: pyarrow>=16.0.0; extra == 'synapse'
|
|
172
|
+
Provides-Extra: weaviate
|
|
173
|
+
Requires-Dist: weaviate-client<5.0.0,>=4.0.0; extra == 'weaviate'
|
|
174
|
+
Description-Content-Type: text/markdown
|
|
175
|
+
|
|
176
|
+
# dlt-fabric
|
|
177
|
+
|
|
178
|
+
`dlt-fabric` is a maintained fork of [dlt](https://github.com/dlt-hub/dlt) with fixes for the Microsoft Fabric Warehouse destination and the related MS SQL family of destinations (mssql, synapse).
|
|
179
|
+
|
|
180
|
+
dlt's Fabric, mssql, and synapse destinations have open issues around authentication and reliability that are not yet released upstream. This fork carries the fixes on top of each dlt release so they can be used today, while the changes work their way through upstream review.
|
|
181
|
+
|
|
182
|
+
## What this fork carries
|
|
183
|
+
|
|
184
|
+
This fork applies four changes on top of the corresponding upstream dlt release:
|
|
185
|
+
|
|
186
|
+
- [dlt-hub/dlt#4140](https://github.com/dlt-hub/dlt/pull/4140): Microsoft Entra ID authentication for the mssql, synapse, and fabric destinations (service principal, managed identity, Azure CLI, interactive, and device code flows, in addition to plain SQL login).
|
|
187
|
+
- [dlt-hub/dlt#4141](https://github.com/dlt-hub/dlt/pull/4141): migration of the mssql, synapse, and fabric destinations from `pyodbc` to the `mssql-python` driver.
|
|
188
|
+
- [dlt-hub/dlt#4142](https://github.com/dlt-hub/dlt/pull/4142): a staging-optimized replace strategy for the Fabric destination, including a fix that makes concurrent multi-table-chain loads safe.
|
|
189
|
+
- [dlt-hub/dlt#4147](https://github.com/dlt-hub/dlt/pull/4147): support for an injectable pre-fetched `access_token` or an externally constructed `azure_credential` on the mssql, synapse, and fabric credentials, bypassing the usual `authentication` resolution.
|
|
190
|
+
|
|
191
|
+
These are proposed as pull requests against upstream dlt. Until they are merged and released, this fork is rebased onto each new dlt release to stay current.
|
|
192
|
+
|
|
193
|
+
## Installation
|
|
194
|
+
|
|
195
|
+
`dlt-fabric` is a drop-in replacement for `dlt`. Install it instead of the upstream package:
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
pip install dlt-fabric
|
|
199
|
+
# or
|
|
200
|
+
uv add dlt-fabric
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
Then use it exactly as you would use `dlt`:
|
|
204
|
+
|
|
205
|
+
```python
|
|
206
|
+
import dlt
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
Both packages install the same `dlt` import path, so `dlt-fabric` cannot be installed alongside the upstream `dlt` package in the same environment.
|
|
210
|
+
|
|
211
|
+
## Documentation
|
|
212
|
+
|
|
213
|
+
This fork does not maintain separate documentation. For everything beyond the fixes listed above, the upstream resources apply directly:
|
|
214
|
+
|
|
215
|
+
- Documentation and usage: https://dlthub.com/docs
|
|
216
|
+
- Upstream project: https://github.com/dlt-hub/dlt
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# dlt-fabric
|
|
2
|
+
|
|
3
|
+
`dlt-fabric` is a maintained fork of [dlt](https://github.com/dlt-hub/dlt) with fixes for the Microsoft Fabric Warehouse destination and the related MS SQL family of destinations (mssql, synapse).
|
|
4
|
+
|
|
5
|
+
dlt's Fabric, mssql, and synapse destinations have open issues around authentication and reliability that are not yet released upstream. This fork carries the fixes on top of each dlt release so they can be used today, while the changes work their way through upstream review.
|
|
6
|
+
|
|
7
|
+
## What this fork carries
|
|
8
|
+
|
|
9
|
+
This fork applies four changes on top of the corresponding upstream dlt release:
|
|
10
|
+
|
|
11
|
+
- [dlt-hub/dlt#4140](https://github.com/dlt-hub/dlt/pull/4140): Microsoft Entra ID authentication for the mssql, synapse, and fabric destinations (service principal, managed identity, Azure CLI, interactive, and device code flows, in addition to plain SQL login).
|
|
12
|
+
- [dlt-hub/dlt#4141](https://github.com/dlt-hub/dlt/pull/4141): migration of the mssql, synapse, and fabric destinations from `pyodbc` to the `mssql-python` driver.
|
|
13
|
+
- [dlt-hub/dlt#4142](https://github.com/dlt-hub/dlt/pull/4142): a staging-optimized replace strategy for the Fabric destination, including a fix that makes concurrent multi-table-chain loads safe.
|
|
14
|
+
- [dlt-hub/dlt#4147](https://github.com/dlt-hub/dlt/pull/4147): support for an injectable pre-fetched `access_token` or an externally constructed `azure_credential` on the mssql, synapse, and fabric credentials, bypassing the usual `authentication` resolution.
|
|
15
|
+
|
|
16
|
+
These are proposed as pull requests against upstream dlt. Until they are merged and released, this fork is rebased onto each new dlt release to stay current.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
`dlt-fabric` is a drop-in replacement for `dlt`. Install it instead of the upstream package:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install dlt-fabric
|
|
24
|
+
# or
|
|
25
|
+
uv add dlt-fabric
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Then use it exactly as you would use `dlt`:
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
import dlt
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Both packages install the same `dlt` import path, so `dlt-fabric` cannot be installed alongside the upstream `dlt` package in the same environment.
|
|
35
|
+
|
|
36
|
+
## Documentation
|
|
37
|
+
|
|
38
|
+
This fork does not maintain separate documentation. For everything beyond the fixes listed above, the upstream resources apply directly:
|
|
39
|
+
|
|
40
|
+
- Documentation and usage: https://dlthub.com/docs
|
|
41
|
+
- Upstream project: https://github.com/dlt-hub/dlt
|