├── .bumpversion.cfg ├── .git-blame-ignore-revs ├── .github ├── .scripts │ ├── gh_pull_request_check_label.sh │ ├── gh_user_check_permission.sh │ └── shift_version.sh └── workflows │ ├── build_debian_docker.yml │ ├── main.yml │ ├── release.yaml │ ├── release_create_hotfix_branch.yaml │ ├── release_prerelease.yaml │ ├── release_protect_branches.yaml │ ├── run_e2e.yml │ ├── run_e2e_on_ref_local.yml │ ├── terrarium_check.yaml │ └── validate-pr-name.yml ├── .gitignore ├── .poetry-version ├── .python-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── Taskfile.dist.yml ├── app ├── app_configs │ └── api.yaml ├── dl_control_api │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── dl_control_api │ │ ├── __init__.py │ │ ├── app.py │ │ └── app_factory.py │ ├── etc │ │ └── service │ │ │ └── dl_api │ │ │ └── run │ ├── pyproject.toml │ └── uwsgi │ │ └── uwsgi-dl-api.ini └── dl_data_api │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── dl_data_api │ ├── __init__.py │ ├── app.py │ └── app_factory.py │ ├── docker │ ├── gunicorn_config.py │ └── gunicorn_logging.ini │ ├── etc │ └── service │ │ └── dl_api │ │ └── run │ └── pyproject.toml ├── ci ├── LICENSE ├── build_naive.sh ├── execute_test_with_docker_compose.sh ├── get_base_img_hash.sh ├── gh_list_changes.sh ├── networks_addon.yml └── stop_compose.sh ├── docker_build ├── LICENSE ├── _bake_vars_functions.hcl ├── bake_apps.hcl ├── bake_base.hcl ├── bake_ci.hcl ├── bake_code_gen.hcl ├── bake_sources.hcl ├── bake_translations.hcl ├── debian_docker │ ├── Dockerfile │ └── scripts │ │ ├── 000-apt-update.sh │ │ ├── 100-docker.sh │ │ ├── 200-tools.sh │ │ └── 900-apt-cleanup.sh ├── null_context │ └── .gitkeep ├── run-project-bake ├── target_base_ci │ ├── Dockerfile │ └── scripts │ │ ├── 400-python.sh │ │ ├── 500-docker.sh │ │ ├── 700-venv.sh │ │ └── 900-apt-cleanup.sh ├── target_base_noble │ ├── Dockerfile │ ├── install_py_310.sh │ └── trusted.gpg.d │ │ └── deadsnakes.asc ├── target_base_noble_db │ └── Dockerfile ├── target_base_run │ ├── Dockerfile │ ├── install_py_310.sh │ └── trusted.gpg.d │ │ └── deadsnakes.asc ├── target_dl_base_linux_w_db_bin_dependencies │ ├── Dockerfile │ └── scripts │ │ ├── 000-apt-prepare.sh │ │ ├── 001-common_system.sh │ │ ├── 002-add-repos.sh │ │ ├── 200-common-tools.sh │ │ ├── 201-taskfile.sh │ │ ├── 300-db-libs.sh │ │ └── 900-apt-cleanup.sh ├── target_gen_antlr │ └── Dockerfile └── target_translations │ ├── target_base │ ├── Dockerfile │ └── scripts │ │ ├── 500-translations.sh │ │ └── 900-apt-cleanup.sh │ ├── target_binaries │ └── Dockerfile │ └── target_update_po │ └── Dockerfile ├── kb ├── development_guides │ ├── connector_development.md │ ├── index.md │ ├── plugins │ │ ├── dl_api_plugin.md │ │ ├── dl_core_plugin.md │ │ └── dl_formula_plugin.md │ └── repo_structure.md ├── how_to_build.md ├── index.md ├── test_embeds.md ├── tooling │ ├── index.md │ └── task_commands.md └── using_kb.md ├── lib ├── .dockerignore ├── clickhouse-sqlalchemy │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ └── bug_report.md │ ├── LICENSE │ ├── README.rst │ ├── UPSTREAM_CHANGELOG.md │ ├── clickhouse_sqlalchemy │ │ ├── __init__.py │ │ ├── drivers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── connector.py │ │ │ │ ├── escaper.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── transport.py │ │ │ │ └── utils.py │ │ │ └── native │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── connector.py │ │ ├── dt_utils.py │ │ ├── engines.py │ │ ├── exceptions.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── clauses.py │ │ │ └── declarative.py │ │ ├── orm │ │ │ ├── __init__.py │ │ │ ├── query.py │ │ │ └── session.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── jsoncompact.py │ │ │ └── tsv.py │ │ ├── quoting.py │ │ ├── sql │ │ │ ├── __init__.py │ │ │ ├── ddl.py │ │ │ ├── schema.py │ │ │ └── selectable.py │ │ ├── types.py │ │ └── util │ │ │ ├── __init__.py │ │ │ └── compat.py │ ├── clickhouse_sqlalchemy_tests │ │ ├── __init__.py │ │ ├── config.py │ │ ├── drivers │ │ │ ├── __init__.py │ │ │ ├── http │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cursor.py │ │ │ │ ├── test_escaping.py │ │ │ │ ├── test_select.py │ │ │ │ ├── test_stream.py │ │ │ │ ├── test_transport.py │ │ │ │ └── test_utils.py │ │ │ ├── native │ │ │ │ ├── __init__.py │ │ │ │ ├── test_base.py │ │ │ │ ├── test_cursor.py │ │ │ │ ├── test_insert.py │ │ │ │ └── test_select.py │ │ │ └── test_clickhouse_dialect.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ └── test_declative.py │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── test_count.py │ │ │ ├── test_extract.py │ │ │ └── test_if.py │ │ ├── log.py │ │ ├── orm │ │ │ ├── __init__.py │ │ │ └── test_select.py │ │ ├── session.py │ │ ├── setup.cfg │ │ ├── sql │ │ │ ├── __init__.py │ │ │ ├── test_basic_operators.py │ │ │ ├── test_case.py │ │ │ ├── test_lambda.py │ │ │ ├── test_limit.py │ │ │ ├── test_schema.py │ │ │ └── test_selectable.py │ │ ├── test_compiler.py │ │ ├── test_ddl.py │ │ ├── test_engines.py │ │ ├── test_exceptions.py │ │ ├── test_parsers.py │ │ ├── test_reflection.py │ │ ├── test_stuff.py │ │ ├── test_totals.py │ │ ├── test_types.py │ │ ├── testcase.py │ │ └── util.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_api_client │ ├── LICENSE │ ├── README.md │ ├── dl_api_client │ │ ├── __init__.py │ │ ├── dsmaker │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── data_api.py │ │ │ │ ├── dataset_api.py │ │ │ │ ├── http_async_base.py │ │ │ │ ├── http_sync_base.py │ │ │ │ ├── schemas │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── data.py │ │ │ │ │ └── dataset.py │ │ │ │ └── serialization_base.py │ │ │ ├── data_abstraction │ │ │ │ ├── __init__.py │ │ │ │ ├── legend.py │ │ │ │ ├── mapping_base.py │ │ │ │ ├── mapping_comparator.py │ │ │ │ ├── pivot.py │ │ │ │ ├── primitives.py │ │ │ │ └── result.py │ │ │ ├── pivot_utils.py │ │ │ ├── primitives.py │ │ │ └── shortcuts │ │ │ │ ├── __init__.py │ │ │ │ ├── dataset.py │ │ │ │ ├── range_data.py │ │ │ │ ├── result_data.py │ │ │ │ └── tree.py │ │ └── py.typed │ ├── dl_api_client_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_primitives.py │ └── pyproject.toml ├── dl_api_commons │ ├── LICENSE │ ├── README.md │ ├── dl_api_commons │ │ ├── __init__.py │ │ ├── access_control_common.py │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── async_wrapper_for_sync_generator.py │ │ │ ├── middlewares │ │ │ │ ├── __init__.py │ │ │ │ ├── auth_trust_middleware.py │ │ │ │ ├── body_signature.py │ │ │ │ ├── commit_rci.py │ │ │ │ ├── commons.py │ │ │ │ ├── cors.py │ │ │ │ ├── csrf.py │ │ │ │ ├── error_handling_outer.py │ │ │ │ ├── master_key.py │ │ │ │ ├── request_bootstrap.py │ │ │ │ ├── request_id.py │ │ │ │ └── tracing.py │ │ │ └── server_header.py │ │ ├── aiohttp │ │ │ ├── __init__.py │ │ │ ├── aiohttp_client.py │ │ │ ├── aiohttp_wrappers.py │ │ │ └── required_resources.py │ │ ├── base_models.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── common.py │ │ ├── crypto.py │ │ ├── exc.py │ │ ├── flask │ │ │ ├── __init__.py │ │ │ ├── middlewares │ │ │ │ ├── __init__.py │ │ │ │ ├── aio_event_loop_middleware.py │ │ │ │ ├── body_signature.py │ │ │ │ ├── commit_rci_middleware.py │ │ │ │ ├── context_var_middleware.py │ │ │ │ ├── logging_context.py │ │ │ │ ├── request_id.py │ │ │ │ ├── tracing.py │ │ │ │ ├── trust_auth.py │ │ │ │ └── wsgi_middleware.py │ │ │ ├── required_resources.py │ │ │ └── types.py │ │ ├── headers.py │ │ ├── logging.py │ │ ├── logging_sentry.py │ │ ├── logging_tracing.py │ │ ├── py.typed │ │ ├── reporting │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── profiler.py │ │ │ ├── records.py │ │ │ └── registry.py │ │ ├── request_id.py │ │ ├── retrier │ │ │ ├── __init__.py │ │ │ ├── aiohttp.py │ │ │ └── requests.py │ │ ├── sentry_config.py │ │ ├── tenant_resolver.py │ │ ├── tracing.py │ │ └── utils.py │ ├── dl_api_commons_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── test_aiohttp_services.py │ │ │ ├── test_async_wrapper_for_sync_generator.py │ │ │ ├── test_common_logging.py │ │ │ ├── test_csrf.py │ │ │ ├── test_request_id.py │ │ │ ├── test_timeout.py │ │ │ └── test_tracing.py │ │ │ ├── conftest.py │ │ │ ├── flask │ │ │ ├── __init__.py │ │ │ ├── test_aio_event_loop_middleware.py │ │ │ ├── test_commit_rci_middleware.py │ │ │ └── test_tracing_middleware.py │ │ │ └── test_reporting.py │ └── pyproject.toml ├── dl_api_connector │ ├── LICENSE │ ├── README.md │ ├── dl_api_connector │ │ ├── __init__.py │ │ ├── api_schema │ │ │ ├── __init__.py │ │ │ ├── component_errors.py │ │ │ ├── connection_base.py │ │ │ ├── connection_base_fields.py │ │ │ ├── connection_mixins.py │ │ │ ├── connection_sql.py │ │ │ ├── extras.py │ │ │ ├── source.py │ │ │ ├── source_base.py │ │ │ └── top_level.py │ │ ├── connection_info.py │ │ ├── connector.py │ │ ├── form_config │ │ │ ├── __init__.py │ │ │ └── models │ │ │ │ ├── __init__.py │ │ │ │ ├── api_schema.py │ │ │ │ ├── base.py │ │ │ │ ├── common.py │ │ │ │ ├── rows │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── customizable │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── components.py │ │ │ │ └── prepared │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── components.py │ │ │ │ └── shortcuts │ │ │ │ ├── __init__.py │ │ │ │ └── rows.py │ │ ├── i18n │ │ │ ├── __init__.py │ │ │ └── localizer.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_api_connector.mo │ │ │ │ │ └── dl_api_connector.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_api_connector.mo │ │ │ │ └── dl_api_connector.po │ │ └── py.typed │ ├── dl_api_connector_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_entry_location_validation.py │ │ │ ├── test_schemas_base.py │ │ │ └── test_serializable_config.py │ └── pyproject.toml ├── dl_api_lib │ ├── LICENSE │ ├── README.md │ ├── dl_api_lib │ │ ├── __init__.py │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── aiohttp_wrappers.py │ │ │ └── middlewares │ │ │ │ ├── __init__.py │ │ │ │ ├── error_handling_outer.py │ │ │ │ ├── json_body_middleware.py │ │ │ │ ├── public_api_key_middleware.py │ │ │ │ └── us_auth_ctx_blackbox.py │ │ ├── api_common │ │ │ ├── __init__.py │ │ │ ├── data_serialization.py │ │ │ ├── data_types.py │ │ │ ├── dataset_loader.py │ │ │ └── update_dataset_mutation_key.py │ │ ├── api_decorators.py │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── control_api │ │ │ │ ├── __init__.py │ │ │ │ ├── app.py │ │ │ │ └── resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── connections.py │ │ │ │ │ ├── dataset.py │ │ │ │ │ ├── dataset_base.py │ │ │ │ │ ├── info.py │ │ │ │ │ └── monitoring.py │ │ │ └── data_api │ │ │ │ ├── __init__.py │ │ │ │ ├── app.py │ │ │ │ └── resources │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dashsql.py │ │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── distinct.py │ │ │ │ ├── fields.py │ │ │ │ ├── pivot.py │ │ │ │ ├── preview.py │ │ │ │ ├── range.py │ │ │ │ └── result.py │ │ │ │ ├── metrics.py │ │ │ │ ├── ping.py │ │ │ │ ├── typed_query.py │ │ │ │ ├── typed_query_raw.py │ │ │ │ └── unistat.py │ │ ├── app_common.py │ │ ├── app_common_settings.py │ │ ├── app_connectors.py │ │ ├── app_settings.py │ │ ├── common_models │ │ │ └── data_export.py │ │ ├── connection_forms │ │ │ ├── __init__.py │ │ │ └── registry.py │ │ ├── connection_info.py │ │ ├── connector_alias.py │ │ ├── connector_availability │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── connector_registrator.py │ │ ├── const.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── base_wrapper.py │ │ │ ├── component_abstraction.py │ │ │ ├── dialect.py │ │ │ ├── utils.py │ │ │ ├── validator.py │ │ │ └── view.py │ │ ├── enums.py │ │ ├── error_handling.py │ │ ├── exc.py │ │ ├── i18n │ │ │ ├── __init__.py │ │ │ ├── localizer.py │ │ │ └── registry.py │ │ ├── loader.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_api_lib.mo │ │ │ │ │ └── dl_api_lib.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_api_lib.mo │ │ │ │ └── dl_api_lib.po │ │ ├── public │ │ │ ├── __init__.py │ │ │ └── entity_usage_checker.py │ │ ├── py.typed │ │ ├── query │ │ │ ├── __init__.py │ │ │ ├── formalization │ │ │ │ ├── __init__.py │ │ │ │ ├── avatar_tools.py │ │ │ │ ├── block_formalizer.py │ │ │ │ ├── field_resolver.py │ │ │ │ ├── id_gen.py │ │ │ │ ├── legend_formalizer.py │ │ │ │ ├── pivot_formalizer.py │ │ │ │ ├── query_formalizer.py │ │ │ │ ├── query_formalizer_base.py │ │ │ │ ├── raw_pivot_specs.py │ │ │ │ └── raw_specs.py │ │ │ └── registry.py │ │ ├── request_model │ │ │ ├── __init__.py │ │ │ ├── data.py │ │ │ └── normalization │ │ │ │ ├── __init__.py │ │ │ │ ├── drm_normalizer_base.py │ │ │ │ └── drm_normalizer_pivot.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── connection.py │ │ │ ├── data.py │ │ │ ├── dataset_base.py │ │ │ ├── fields.py │ │ │ ├── filter.py │ │ │ ├── legend.py │ │ │ ├── main.py │ │ │ ├── options.py │ │ │ ├── parameters.py │ │ │ ├── pivot.py │ │ │ ├── tools.py │ │ │ ├── typed_query.py │ │ │ ├── typed_query_raw.py │ │ │ └── validation.py │ │ ├── service_registry │ │ │ ├── __init__.py │ │ │ ├── dataset_validator_factory.py │ │ │ ├── field_id_generator_factory.py │ │ │ ├── formula_parser_factory.py │ │ │ ├── multi_query_mutator_factory.py │ │ │ ├── service_registry.py │ │ │ ├── sr_factory.py │ │ │ ├── supported_functions_manager.py │ │ │ ├── typed_query_processor_factory.py │ │ │ └── typed_query_raw_processor_factory.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── base.py │ ├── dl_api_lib_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── control_api │ │ │ │ ├── __init__.py │ │ │ │ ├── test_avatars.py │ │ │ │ ├── test_dashsql_errors.py │ │ │ │ ├── test_dataset_schema.py │ │ │ │ ├── test_errors.py │ │ │ │ ├── test_info.py │ │ │ │ ├── test_revision.py │ │ │ │ ├── test_rls.py │ │ │ │ └── validation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_description.py │ │ │ │ │ ├── test_parameters.py │ │ │ │ │ ├── test_settings.py │ │ │ │ │ ├── test_ui_settings.py │ │ │ │ │ └── test_update_id.py │ │ │ └── data_api │ │ │ │ ├── __init__.py │ │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ └── test_caches.py │ │ │ │ ├── pivot │ │ │ │ ├── __init__.py │ │ │ │ ├── test_annotations.py │ │ │ │ ├── test_basic.py │ │ │ │ ├── test_corner_cases.py │ │ │ │ ├── test_errors.py │ │ │ │ ├── test_simple_totals.py │ │ │ │ └── test_totals.py │ │ │ │ ├── result │ │ │ │ ├── __init__.py │ │ │ │ ├── complex_queries │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── generation │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── generator.py │ │ │ │ │ │ └── runner.py │ │ │ │ │ ├── test_compeng_corner_cases.py │ │ │ │ │ ├── test_ext_agg_basic.py │ │ │ │ │ ├── test_ext_agg_corner_cases.py │ │ │ │ │ ├── test_generated.py │ │ │ │ │ ├── test_lookup_functions.py │ │ │ │ │ └── test_window_functions.py │ │ │ │ ├── test_basic.py │ │ │ │ ├── test_errors.py │ │ │ │ ├── test_markup.py │ │ │ │ ├── test_optimizations.py │ │ │ │ ├── test_parameters.py │ │ │ │ ├── test_revision.py │ │ │ │ ├── test_trees.py │ │ │ │ └── test_updates.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_errors.py │ │ │ │ ├── test_join_optimization.py │ │ │ │ ├── test_ping.py │ │ │ │ ├── test_rls.py │ │ │ │ └── test_typed_query.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── config.yaml │ │ │ └── test_config_loading.py │ │ │ ├── drm_normalization │ │ │ ├── __init__.py │ │ │ └── test_pivot.py │ │ │ ├── pivot │ │ │ ├── __init__.py │ │ │ ├── test_corner_cases.py │ │ │ ├── test_paginator.py │ │ │ ├── test_sorter.py │ │ │ ├── test_stream_modifers.py │ │ │ └── test_transformer.py │ │ │ ├── schemas │ │ │ └── test_parameters.py │ │ │ ├── test_error_handling.py │ │ │ ├── test_exc_codes.py │ │ │ ├── test_mutation_cache.py │ │ │ └── test_supported_functions_registry.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse │ │ └── db-clickhouse │ │ │ ├── docker-entrypoint-initdb.d │ │ │ └── prepare_db.sql │ │ │ └── users.xml │ └── pyproject.toml ├── dl_api_lib_testing │ ├── LICENSE │ ├── README.md │ ├── dl_api_lib_testing │ │ ├── __init__.py │ │ ├── app.py │ │ ├── base.py │ │ ├── client.py │ │ ├── configuration.py │ │ ├── connection_base.py │ │ ├── connection_form_base.py │ │ ├── connector │ │ │ ├── __init__.py │ │ │ ├── complex_queries.py │ │ │ ├── connection_suite.py │ │ │ ├── dashsql_suite.py │ │ │ ├── data_api_suites.py │ │ │ ├── dataset_suite.py │ │ │ └── typed_query_suite.py │ │ ├── dashsql_base.py │ │ ├── data_api_base.py │ │ ├── dataset_base.py │ │ ├── datasource_template_base.py │ │ ├── helpers │ │ │ ├── __init__.py │ │ │ ├── data_source.py │ │ │ ├── lookup_checkers.py │ │ │ └── multi_query.py │ │ ├── initialization.py │ │ ├── py.typed │ │ └── typed_query_base.py │ └── pyproject.toml ├── dl_app_api_base │ ├── LICENSE │ ├── README.md │ ├── dl_app_api_base │ │ ├── __init__.py │ │ ├── app.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── health │ │ │ │ ├── __init__.py │ │ │ │ ├── liveness_probe.py │ │ │ │ └── readiness_probe.py │ │ │ └── responses.py │ │ ├── middlewares │ │ │ ├── __init__.py │ │ │ ├── error_handling.py │ │ │ └── logging.py │ │ ├── openapi │ │ │ ├── __init__.py │ │ │ ├── handlers.py │ │ │ ├── models.py │ │ │ ├── settings.py │ │ │ └── swagger │ │ │ │ ├── static │ │ │ │ ├── LICENSE │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── index.css │ │ │ │ ├── oauth2-redirect.html │ │ │ │ ├── swagger-editor-bundle.js │ │ │ │ ├── swagger-editor-bundle.js.map │ │ │ │ ├── swagger-editor-es-bundle-core.js │ │ │ │ ├── swagger-editor-es-bundle-core.js.map │ │ │ │ ├── swagger-editor-es-bundle.js │ │ │ │ ├── swagger-editor-es-bundle.js.map │ │ │ │ ├── swagger-editor-standalone-preset.js │ │ │ │ ├── swagger-editor-standalone-preset.js.map │ │ │ │ ├── swagger-editor.css │ │ │ │ ├── swagger-editor.css.map │ │ │ │ ├── swagger-editor.js │ │ │ │ ├── swagger-editor.js.map │ │ │ │ ├── swagger-initializer.js │ │ │ │ ├── swagger-ui-bundle.js │ │ │ │ ├── swagger-ui-es-bundle-core.js │ │ │ │ ├── swagger-ui-es-bundle.js │ │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ │ ├── swagger-ui.css │ │ │ │ └── swagger-ui.js │ │ │ │ └── templates │ │ │ │ └── doc.html │ │ └── py.typed │ ├── dl_app_api_base_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_deleteme.py │ └── pyproject.toml ├── dl_app_base │ ├── LICENSE │ ├── README.md │ ├── dl_app_base │ │ ├── __init__.py │ │ ├── base.py │ │ ├── exceptions.py │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ └── certificates.py │ │ ├── models.py │ │ ├── py.typed │ │ ├── run.py │ │ └── singleton.py │ ├── dl_app_base_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ └── test_certificates.py │ │ │ └── test_singleton.py │ └── pyproject.toml ├── dl_app_tools │ ├── LICENSE │ ├── dl_app_tools │ │ ├── __init__.py │ │ ├── aio_latency_tracking.py │ │ ├── profiling_base.py │ │ └── py.typed │ ├── dl_app_tools_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_stuff.py │ └── pyproject.toml ├── dl_attrs_model_mapper │ ├── LICENSE │ ├── README.md │ ├── dl_attrs_model_mapper │ │ ├── __init__.py │ │ ├── base.py │ │ ├── domain.py │ │ ├── field_processor.py │ │ ├── marshmallow.py │ │ ├── marshmallow_base_schemas.py │ │ ├── marshmallow_fields.py │ │ ├── pretty_repr.py │ │ ├── py.typed │ │ ├── structs │ │ │ ├── __init__.py │ │ │ ├── mappings.py │ │ │ └── singleormultistring.py │ │ └── utils.py │ ├── dl_attrs_model_mapper_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_attrs_field_processor.py │ │ │ ├── test_attrs_model_mapper.py │ │ │ └── test_struct.py │ └── pyproject.toml ├── dl_attrs_model_mapper_doc_tools │ ├── LICENSE │ ├── README.md │ ├── dl_attrs_model_mapper_doc_tools │ │ ├── __init__.py │ │ ├── domain.py │ │ ├── main.py │ │ ├── md_link_extractor.py │ │ ├── operations_builder.py │ │ ├── py.typed │ │ ├── render_units.py │ │ └── writer_utils.py │ └── pyproject.toml ├── dl_auth │ ├── LICENSE │ ├── README.md │ ├── dl_auth │ │ ├── __init__.py │ │ ├── auth_providers.py │ │ ├── data.py │ │ └── py.typed │ ├── dl_auth_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── auth_providers │ │ │ ├── __init__.py │ │ │ ├── test_no_auth.py │ │ │ ├── test_oauth.py │ │ │ └── test_us_master_token.py │ │ │ └── conftest.py │ └── pyproject.toml ├── dl_auth_api_lib │ ├── LICENSE │ ├── README.md │ ├── dl_auth_api_lib │ │ ├── __init__.py │ │ ├── app.py │ │ ├── error_handler.py │ │ ├── exc.py │ │ ├── oauth │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── google.py │ │ │ ├── snowflake.py │ │ │ └── yandex.py │ │ ├── py.typed │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── google.py │ │ │ ├── snowflake.py │ │ │ └── yandex.py │ │ ├── settings.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── google.py │ │ │ ├── snowflake.py │ │ │ └── yandex.py │ ├── dl_auth_api_lib_tests │ │ ├── __init__.py │ │ ├── config.yaml │ │ ├── conftest.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── test_google.py │ │ │ ├── test_snowflake.py │ │ │ └── test_yandex.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── test_app.py │ │ │ ├── test_google.py │ │ │ ├── test_settings.py │ │ │ ├── test_snowflake.py │ │ │ └── test_yandex.py │ └── pyproject.toml ├── dl_auth_native │ ├── LICENSE │ ├── README.md │ ├── dl_auth_native │ │ ├── __init__.py │ │ ├── exc.py │ │ ├── middlewares │ │ │ ├── __init__.py │ │ │ ├── aiohttp.py │ │ │ ├── base.py │ │ │ └── flask.py │ │ ├── py.typed │ │ └── token.py │ ├── dl_auth_native_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── middleware │ │ │ ├── conftest.py │ │ │ ├── test_aiohttp.py │ │ │ └── test_flask.py │ │ │ └── token │ │ │ ├── __init__.py │ │ │ └── test_decoder.py │ └── pyproject.toml ├── dl_cache_engine │ ├── LICENSE │ ├── README.md │ ├── dl_cache_engine │ │ ├── __init__.py │ │ ├── engine.py │ │ ├── exc.py │ │ ├── primitives.py │ │ ├── processing_helper.py │ │ └── py.typed │ ├── dl_cache_engine_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_processing_helper.py │ └── pyproject.toml ├── dl_compeng_pg │ ├── LICENSE │ ├── README.md │ ├── dl_compeng_pg │ │ ├── __init__.py │ │ ├── compeng_aiopg │ │ │ ├── __init__.py │ │ │ ├── data_processor_service_aiopg.py │ │ │ ├── exec_adapter_aiopg.py │ │ │ ├── plugin.py │ │ │ ├── pool_aiopg.py │ │ │ └── processor_aiopg.py │ │ ├── compeng_asyncpg │ │ │ ├── __init__.py │ │ │ ├── data_processor_service_asyncpg.py │ │ │ ├── exec_adapter_asyncpg.py │ │ │ ├── plugin.py │ │ │ ├── pool_asyncpg.py │ │ │ └── processor_asyncpg.py │ │ ├── compeng_pg_base │ │ │ ├── __init__.py │ │ │ ├── data_processor_service_pg.py │ │ │ ├── exec_adapter_base.py │ │ │ ├── pool_base.py │ │ │ └── processor_base.py │ │ └── py.typed │ └── pyproject.toml ├── dl_configs │ ├── LICENSE │ ├── dl_configs │ │ ├── __init__.py │ │ ├── connector_availability.py │ │ ├── connectors_settings.py │ │ ├── crypto_keys.py │ │ ├── enums.py │ │ ├── env_var_definitions.py │ │ ├── env_var_reader.py │ │ ├── environments.py │ │ ├── py.typed │ │ ├── rate_limiter.py │ │ ├── rqe.py │ │ ├── settings_loaders │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── connectors_settings.py │ │ │ ├── env_remap.py │ │ │ ├── exc.py │ │ │ ├── fallback_cfg_resolver.py │ │ │ ├── loader_env.py │ │ │ ├── meta_definition.py │ │ │ └── settings_obj_base.py │ │ ├── settings_submodels.py │ │ └── utils.py │ ├── dl_configs_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── test_connectors_settings_generation.py │ │ │ ├── test_crypto_controller_from_env.py │ │ │ ├── test_object_like_config.py │ │ │ ├── test_settings_loader_env.py │ │ │ └── test_settings_loader_env_legacy.py │ └── pyproject.toml ├── dl_connector_bigquery │ ├── LICENSE │ ├── README.md │ ├── dl_connector_bigquery │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── source.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── bigquery.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── bigquery.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_spec.py │ │ │ ├── dto.py │ │ │ ├── error_transformer.py │ │ │ ├── query_compiler.py │ │ │ ├── sa_types.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── data_source_spec.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ └── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_bigquery.mo │ │ │ │ │ └── dl_connector_bigquery.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_bigquery.mo │ │ │ │ └── dl_connector_bigquery.po │ │ ├── py.typed │ │ └── testing │ │ │ ├── __init__.py │ │ │ └── secrets.py │ ├── dl_connector_bigquery_tests │ │ ├── __init__.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data.py │ │ │ │ └── test_dataset.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ └── test_dataset.py │ │ │ ├── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ └── test_operators.py │ │ │ └── params.yml │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── expected_forms │ │ │ ├── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_connector_bitrix_gds │ ├── LICENSE │ ├── README.md │ ├── dl_connector_bitrix_gds │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ ├── filter_compiler.py │ │ │ ├── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ │ └── multi_query.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── bitrix24.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── bitrix24.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapter.py │ │ │ ├── caches.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── dto.py │ │ │ ├── error_transformer.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── tables.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ └── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ └── operators_ternary.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_bitrix_gds.mo │ │ │ │ │ └── dl_connector_bitrix_gds.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_bitrix_gds.mo │ │ │ │ └── dl_connector_bitrix_gds.po │ │ └── py.typed │ ├── dl_connector_bitrix_gds_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_sources.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ └── params.yml │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── test_connection_form.py │ │ │ └── test_query_splitter.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-postgres-13 │ │ ├── db-postgres │ │ │ ├── data │ │ │ │ └── sample.csv │ │ │ └── initdb.d │ │ │ │ └── 01_prepare_db.sql │ │ └── tests │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_connector_bundle_chs3 │ ├── LICENSE │ ├── README.md │ ├── dl_connector_bundle_chs3 │ │ ├── __init__.py │ │ ├── chs3_base │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── api_schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── source.py │ │ │ │ ├── connector.py │ │ │ │ └── i18n │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── localizer.py │ │ │ └── core │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── data_source_spec.py │ │ │ │ ├── dto.py │ │ │ │ ├── lifecycle.py │ │ │ │ ├── notifications.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── data_source_spec.py │ │ │ │ ├── target_dto.py │ │ │ │ ├── testing │ │ │ │ ├── __init__.py │ │ │ │ └── utils.py │ │ │ │ ├── type_transformer.py │ │ │ │ └── us_connection.py │ │ ├── chs3_gsheets │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── api_schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── source.py │ │ │ │ ├── connection_info.py │ │ │ │ └── connector.py │ │ │ ├── assets │ │ │ │ ├── __init__.py │ │ │ │ └── icons │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── nav │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── gsheets.svg │ │ │ │ │ └── standard │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── gsheets.svg │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── data_source_spec.py │ │ │ │ ├── lifecycle.py │ │ │ │ ├── sa_types.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── data_source_spec.py │ │ │ │ └── us_connection.py │ │ │ ├── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── definitions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── all.py │ │ │ │ │ ├── conditional_blocks.py │ │ │ │ │ ├── functions_aggregation.py │ │ │ │ │ ├── functions_array.py │ │ │ │ │ ├── functions_datetime.py │ │ │ │ │ ├── functions_logical.py │ │ │ │ │ ├── functions_markup.py │ │ │ │ │ ├── functions_math.py │ │ │ │ │ ├── functions_special.py │ │ │ │ │ ├── functions_string.py │ │ │ │ │ ├── functions_type.py │ │ │ │ │ ├── functions_window.py │ │ │ │ │ ├── operators_binary.py │ │ │ │ │ ├── operators_ternary.py │ │ │ │ │ └── operators_unary.py │ │ │ │ └── utils.py │ │ │ └── formula_ref │ │ │ │ ├── __init__.py │ │ │ │ ├── human_dialects.py │ │ │ │ ├── i18n.py │ │ │ │ └── plugin.py │ │ ├── chs3_yadocs │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── api_schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── source.py │ │ │ │ ├── connection_info.py │ │ │ │ └── connector.py │ │ │ ├── assets │ │ │ │ ├── __init__.py │ │ │ │ └── icons │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── nav │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── yadocs.svg │ │ │ │ │ └── standard │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── yadocs.svg │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── data_source_spec.py │ │ │ │ ├── lifecycle.py │ │ │ │ ├── sa_types.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── data_source_spec.py │ │ │ │ └── us_connection.py │ │ │ ├── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── definitions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── all.py │ │ │ │ │ ├── conditional_blocks.py │ │ │ │ │ ├── functions_aggregation.py │ │ │ │ │ ├── functions_array.py │ │ │ │ │ ├── functions_datetime.py │ │ │ │ │ ├── functions_logical.py │ │ │ │ │ ├── functions_markup.py │ │ │ │ │ ├── functions_math.py │ │ │ │ │ ├── functions_special.py │ │ │ │ │ ├── functions_string.py │ │ │ │ │ ├── functions_type.py │ │ │ │ │ ├── functions_window.py │ │ │ │ │ ├── operators_binary.py │ │ │ │ │ ├── operators_ternary.py │ │ │ │ │ └── operators_unary.py │ │ │ │ └── utils.py │ │ │ └── formula_ref │ │ │ │ ├── __init__.py │ │ │ │ ├── human_dialects.py │ │ │ │ ├── i18n.py │ │ │ │ └── plugin.py │ │ ├── file │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── api_schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── source.py │ │ │ │ ├── connection_info.py │ │ │ │ └── connector.py │ │ │ ├── assets │ │ │ │ ├── __init__.py │ │ │ │ └── icons │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── nav │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── file.svg │ │ │ │ │ └── standard │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── file.svg │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── data_source_spec.py │ │ │ │ ├── lifecycle.py │ │ │ │ ├── sa_types.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── data_source_spec.py │ │ │ │ └── us_connection.py │ │ │ ├── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── definitions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── all.py │ │ │ │ │ ├── conditional_blocks.py │ │ │ │ │ ├── functions_aggregation.py │ │ │ │ │ ├── functions_array.py │ │ │ │ │ ├── functions_datetime.py │ │ │ │ │ ├── functions_logical.py │ │ │ │ │ ├── functions_markup.py │ │ │ │ │ ├── functions_math.py │ │ │ │ │ ├── functions_special.py │ │ │ │ │ ├── functions_string.py │ │ │ │ │ ├── functions_type.py │ │ │ │ │ ├── functions_window.py │ │ │ │ │ ├── operators_binary.py │ │ │ │ │ ├── operators_ternary.py │ │ │ │ │ └── operators_unary.py │ │ │ │ └── utils.py │ │ │ └── formula_ref │ │ │ │ ├── __init__.py │ │ │ │ ├── human_dialects.py │ │ │ │ ├── i18n.py │ │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_bundle_chs3.mo │ │ │ │ │ ├── dl_connector_bundle_chs3.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_bundle_chs3.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_bundle_chs3.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_bundle_chs3.mo │ │ │ │ ├── dl_connector_bundle_chs3.po │ │ │ │ ├── dl_formula_ref_dl_connector_bundle_chs3.mo │ │ │ │ └── dl_formula_ref_dl_connector_bundle_chs3.po │ │ └── py.typed │ ├── dl_connector_bundle_chs3_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── db │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── connection.py │ │ │ │ ├── data.py │ │ │ │ └── dataset.py │ │ │ └── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_executor.py │ │ │ │ ├── data_source.py │ │ │ │ └── dataset.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── file │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data.py │ │ │ │ └── test_dataset.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_adapter.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ └── test_dataset.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_array.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_functions_window.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ │ ├── gsheets_v2 │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data.py │ │ │ │ └── test_dataset.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_adapter.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ └── test_dataset.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_array.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_functions_window.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ │ └── yadocs │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_connection.py │ │ │ ├── test_data.py │ │ │ └── test_dataset.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_adapter.py │ │ │ ├── test_connection.py │ │ │ ├── test_connection_executor.py │ │ │ ├── test_data_source.py │ │ │ └── test_dataset.py │ │ │ └── formula │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_conditional_blocks.py │ │ │ ├── test_functions_aggregation.py │ │ │ ├── test_functions_array.py │ │ │ ├── test_functions_datetime.py │ │ │ ├── test_functions_logical.py │ │ │ ├── test_functions_markup.py │ │ │ ├── test_functions_math.py │ │ │ ├── test_functions_string.py │ │ │ ├── test_functions_type_conversion.py │ │ │ ├── test_functions_window.py │ │ │ ├── test_literals.py │ │ │ ├── test_misc_funcs.py │ │ │ └── test_operators.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse-22-10 │ │ ├── db-clickhouse │ │ │ ├── data │ │ │ │ └── sample.csv │ │ │ ├── docker-entrypoint-initdb.d │ │ │ │ ├── 001_prepare_db.sql │ │ │ │ └── 011_load_test_data.sh │ │ │ └── users.xml │ │ └── tests │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_connector_chyt │ ├── LICENSE │ ├── README.md │ ├── dl_connector_chyt │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── source.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ ├── chyt.svg │ │ │ │ └── greenplum.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ ├── chyt.svg │ │ │ │ └── greenplum.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── async_adapters.py │ │ │ ├── conn_options.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── data_source_spec.py │ │ │ ├── dto.py │ │ │ ├── exc.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── data_source_spec.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ ├── us_connection.py │ │ │ └── utils.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_chyt.mo │ │ │ │ │ └── dl_connector_chyt.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_chyt.mo │ │ │ │ └── dl_connector_chyt.po │ │ └── py.typed │ ├── dl_connector_chyt_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_exc_codes.py │ └── pyproject.toml ├── dl_connector_clickhouse │ ├── LICENSE │ ├── README.md │ ├── dl_connector_clickhouse │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── clickhouse.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── clickhouse.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── clickhouse │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── data_source_migration.py │ │ │ │ ├── dto.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── connection.py │ │ │ │ ├── target_dto.py │ │ │ │ ├── testing │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── exec_factory.py │ │ │ │ └── us_connection.py │ │ │ └── clickhouse_base │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters.py │ │ │ │ ├── ch_commons.py │ │ │ │ ├── conn_options.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── dto.py │ │ │ │ ├── exc.py │ │ │ │ ├── query_compiler.py │ │ │ │ ├── sa_types.py │ │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ │ ├── target_dto.py │ │ │ │ ├── type_transformer.py │ │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_array.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_hash.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_special.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── functions_window.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ ├── literal.py │ │ │ ├── testing │ │ │ │ ├── __init__.py │ │ │ │ └── test_suites.py │ │ │ └── type_constructor.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_clickhouse.mo │ │ │ │ │ ├── dl_connector_clickhouse.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_clickhouse.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_clickhouse.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_clickhouse.mo │ │ │ │ ├── dl_connector_clickhouse.po │ │ │ │ ├── dl_formula_ref_dl_connector_clickhouse.mo │ │ │ │ └── dl_formula_ref_dl_connector_clickhouse.po │ │ └── py.typed │ ├── dl_connector_clickhouse_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_adapter.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_remote_query_executor.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_array.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_hash.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_functions_window.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── formula │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse-21-8 │ │ ├── Dockerfile.db-clickhouse-22-10 │ │ ├── Dockerfile.db-clickhouse-22-10.ssl │ │ ├── db-clickhouse │ │ │ ├── config.xml │ │ │ ├── data │ │ │ │ └── sample.csv │ │ │ ├── docker-entrypoint-initdb.d │ │ │ │ ├── 001_prepare_db.sql │ │ │ │ └── 011_load_test_data.sh │ │ │ ├── ssl │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── chnode.crt │ │ │ │ ├── chnode.key │ │ │ │ └── marsnet_ca.crt │ │ │ └── users.xml │ │ └── tests │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_connector_greenplum │ ├── LICENSE │ ├── README.md │ ├── dl_connector_greenplum │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── greenplum.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── greenplum.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── dto.py │ │ │ ├── sa_types.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ └── us_connection.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_greenplum.mo │ │ │ │ │ └── dl_connector_greenplum.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_greenplum.mo │ │ │ │ └── dl_connector_greenplum.po │ │ └── py.typed │ ├── dl_connector_greenplum_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ └── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-postgres-13 │ │ ├── db-postgres │ │ │ ├── data │ │ │ │ └── sample.csv │ │ │ └── initdb.d │ │ │ │ └── 01_prepare_db.sql │ │ └── tests │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_connector_metrica │ ├── LICENSE │ ├── README.md │ ├── dl_connector_metrica │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_handler.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ ├── components.py │ │ │ │ ├── form_config.py │ │ │ │ └── rows.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ ├── filter_compiler.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ ├── appmetrica_api.svg │ │ │ │ └── metrika_api.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ ├── appmetrica_api.svg │ │ │ │ └── metrika_api.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters_metrica_x.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── dto.py │ │ │ ├── exc.py │ │ │ ├── lifecycle.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ └── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_metrica.mo │ │ │ │ │ ├── dl_connector_metrica.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_metrica.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_metrica.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_metrica.mo │ │ │ │ ├── dl_connector_metrica.po │ │ │ │ ├── dl_formula_ref_dl_connector_metrica.mo │ │ │ │ └── dl_formula_ref_dl_connector_metrica.po │ │ └── py.typed │ ├── dl_connector_metrica_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data.py │ │ │ │ └── test_dataset.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data_source.py │ │ │ │ └── test_dataset.py │ │ │ └── params.yml │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── AppMetrica │ │ │ │ ├── False_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ ├── False_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ │ ├── False_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ ├── False_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ │ ├── True_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ ├── True_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ │ ├── True_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ └── True_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── Metrica │ │ │ │ ├── False_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ ├── False_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ │ ├── False_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ ├── False_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ │ ├── True_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ ├── True_False_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ │ ├── True_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ │ └── True_True_False_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_connector_mssql │ ├── LICENSE │ ├── README.md │ ├── dl_connector_mssql │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── mssql.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── mssql.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters_mssql.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── dto.py │ │ │ ├── exc.py │ │ │ ├── query_compiler.py │ │ │ ├── sa_types.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── context_processor.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ ├── literal.py │ │ │ └── type_constructor.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_mssql.mo │ │ │ │ │ ├── dl_connector_mssql.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_mssql.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_mssql.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_mssql.mo │ │ │ │ ├── dl_connector_mssql.po │ │ │ │ ├── dl_formula_ref_dl_connector_mssql.mo │ │ │ │ └── dl_formula_ref_dl_connector_mssql.po │ │ └── py.typed │ ├── dl_connector_mssql_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_remote_query_executor.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ ├── docker-compose │ │ └── tests │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_connector_mysql │ ├── LICENSE │ ├── README.md │ ├── dl_connector_mysql │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── mysql.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── mysql.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters_base_mysql.py │ │ │ ├── adapters_mysql.py │ │ │ ├── async_adapters_mysql.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── dto.py │ │ │ ├── error_transformer.py │ │ │ ├── exc.py │ │ │ ├── query_compiler.py │ │ │ ├── sa_types.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ ├── us_connection.py │ │ │ └── utils.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_hash.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── functions_window.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ ├── literal.py │ │ │ └── type_constructor.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_mysql.mo │ │ │ │ │ ├── dl_connector_mysql.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_mysql.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_mysql.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_mysql.mo │ │ │ │ ├── dl_connector_mysql.po │ │ │ │ ├── dl_formula_ref_dl_connector_mysql.mo │ │ │ │ └── dl_formula_ref_dl_connector_mysql.po │ │ └── py.typed │ ├── dl_connector_mysql_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_adapter.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ ├── test_dataset.py │ │ │ │ ├── test_remote_query_executor.py │ │ │ │ └── test_sa_dialect.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_hash.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_functions_window.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── formula │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-mysql-8.0.40 │ │ ├── Dockerfile.db-mysql-8.0.40-ssl │ │ ├── db-mysql │ │ │ └── docker-entrypoint-initdb.d │ │ │ │ └── prepare_db.sql │ │ ├── rogue_mysql_server │ │ │ ├── Dockerfile │ │ │ ├── Taskfile.yaml │ │ │ └── config.yaml │ │ └── tests │ │ │ ├── entrypoint.sh │ │ │ └── fetch-certificates.sh │ └── pyproject.toml ├── dl_connector_oracle │ ├── LICENSE │ ├── README.md │ ├── dl_connector_oracle │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── oracle.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── oracle.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters_oracle.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── dashsql.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── dto.py │ │ │ ├── query_compiler.py │ │ │ ├── sa_types.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── context_processor.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_hash.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ ├── literal.py │ │ │ └── type_constructor.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_oracle.mo │ │ │ │ │ ├── dl_connector_oracle.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_oracle.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_oracle.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_oracle.mo │ │ │ │ ├── dl_connector_oracle.po │ │ │ │ ├── dl_formula_ref_dl_connector_oracle.mo │ │ │ │ └── dl_formula_ref_dl_connector_oracle.po │ │ └── py.typed │ ├── dl_connector_oracle_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_remote_query_executor.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_hash.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-oracle-ssl │ │ ├── db-oracle-ssl │ │ │ ├── listener.ora │ │ │ ├── sqlnet.ora │ │ │ └── tnsnames.ora │ │ └── tests │ │ │ └── fetch-certificates.sh │ └── pyproject.toml ├── dl_connector_postgresql │ ├── LICENSE │ ├── README.md │ ├── dl_connector_postgresql │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── postgres.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── postgres.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── postgresql │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── data_source_migration.py │ │ │ │ ├── dto.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── connection.py │ │ │ │ ├── testing │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── exec_factory.py │ │ │ │ └── us_connection.py │ │ │ └── postgresql_base │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters_base_postgres.py │ │ │ │ ├── adapters_postgres.py │ │ │ │ ├── async_adapters_postgres.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── constants.py │ │ │ │ ├── dto.py │ │ │ │ ├── error_transformer.py │ │ │ │ ├── exc.py │ │ │ │ ├── query_compiler.py │ │ │ │ ├── sa_types.py │ │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ │ ├── target_dto.py │ │ │ │ ├── type_transformer.py │ │ │ │ ├── us_connection.py │ │ │ │ └── utils.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── common.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_array.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_hash.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_special.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── functions_window.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ ├── literal.py │ │ │ └── type_constructor.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_postgresql.mo │ │ │ │ │ ├── dl_connector_postgresql.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_postgresql.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_postgresql.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_postgresql.mo │ │ │ │ ├── dl_connector_postgresql.po │ │ │ │ ├── dl_formula_ref_dl_connector_postgresql.mo │ │ │ │ └── dl_formula_ref_dl_connector_postgresql.po │ │ └── py.typed │ ├── dl_connector_postgresql_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_adapter.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_remote_query_executor.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_array.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_hash.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_functions_window.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── formula │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ │ │ ├── test_connection_form.py │ │ │ ├── test_error_transformer.py │ │ │ └── test_type_transformer.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-postgres-13 │ │ ├── Dockerfile.db-postgres-9.3 │ │ ├── Dockerfile.db-postgres-9.4 │ │ ├── Dockerfile.db-postgres-9.4-ssl │ │ ├── db-postgres │ │ │ ├── data │ │ │ │ └── sample.csv │ │ │ ├── initdb.d │ │ │ │ ├── 01_prepare_db.sql │ │ │ │ └── 02_prepare_db.sql │ │ │ ├── pg_hba.conf │ │ │ ├── postgresql.conf │ │ │ └── ssl │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── root.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ └── tests │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_connector_promql │ ├── LICENSE │ ├── README.md │ ├── dl_connector_promql │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── promql.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── promql.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapter.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── dto.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_promql.mo │ │ │ │ │ └── dl_connector_promql.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_promql.mo │ │ │ │ └── dl_connector_promql.po │ │ └── py.typed │ ├── dl_connector_promql_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_dashsql.py │ │ │ ├── config.py │ │ │ └── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.node-exporter │ │ ├── Dockerfile.prometheus │ │ ├── node-exporter │ │ │ └── data │ │ │ │ └── test_data.prom │ │ └── prometheus │ │ │ └── prometheus.yml │ └── pyproject.toml ├── dl_connector_snowflake │ ├── INIT_TEST_DB.sql │ ├── LICENSE │ ├── README.md │ ├── dl_connector_snowflake │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── source.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── snowflake.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── snowflake.svg │ │ ├── auth.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_spec.py │ │ │ ├── dto.py │ │ │ ├── error_transformer.py │ │ │ ├── exc.py │ │ │ ├── lifecycle.py │ │ │ ├── notifications.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ └── data_source_spec.py │ │ │ ├── target_dto.py │ │ │ ├── testing │ │ │ │ ├── __init__.py │ │ │ │ └── secrets.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ └── literal.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_snowflake.mo │ │ │ │ │ └── dl_connector_snowflake.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_snowflake.mo │ │ │ │ └── dl_connector_snowflake.po │ │ └── py.typed │ ├── dl_connector_snowflake_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data.py │ │ │ │ └── test_dataset.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_data_source.py │ │ │ │ └── test_token_expire_notification.py │ │ │ ├── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ │ └── params.yml │ │ ├── sf_sample_table.sql │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_connector_trino │ ├── LICENSE │ ├── README.md │ ├── dl_connector_trino │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ ├── connection_info.py │ │ │ ├── connector.py │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── trino.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── trino.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── conn_options.py │ │ │ ├── connection_executors.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── data_source.py │ │ │ ├── data_source_migration.py │ │ │ ├── dto.py │ │ │ ├── error_transformer.py │ │ │ ├── query_compiler.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ ├── target_dto.py │ │ │ ├── type_transformer.py │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ ├── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── custom_constructors.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_array.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_hash.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_special.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── functions_window.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ │ ├── literal.py │ │ │ └── type_constructor.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_trino.mo │ │ │ │ │ ├── dl_connector_trino.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_trino.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_trino.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_trino.mo │ │ │ │ ├── dl_connector_trino.po │ │ │ │ ├── dl_formula_ref_dl_connector_trino.mo │ │ │ │ └── dl_formula_ref_dl_connector_trino.po │ │ └── py.typed │ ├── dl_connector_trino_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_complex_queries.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ └── test_dataset.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_remote_query_executor.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_array.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_hash.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_functions_window.py │ │ │ │ ├── test_literals.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── test_connection_form.py │ │ │ └── test_custom_compiler.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.engine-trino-471 │ │ ├── Dockerfile.trino-tls-nginx │ │ ├── nginx │ │ │ ├── fetch-certificates.sh │ │ │ └── nginx.conf │ │ └── trino │ │ │ ├── catalog │ │ │ ├── blackhole.properties │ │ │ └── test_memory_catalog.properties │ │ │ ├── config.properties │ │ │ ├── jwt_rsa_public.pem │ │ │ ├── log.properties │ │ │ ├── password-authenticator.properties │ │ │ └── password.db │ └── pyproject.toml ├── dl_connector_ydb │ ├── LICENSE │ ├── README.md │ ├── dl_connector_ydb │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── ydb │ │ │ │ ├── __init__.py │ │ │ │ ├── api_schema │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ │ ├── connection_form │ │ │ │ ├── __init__.py │ │ │ │ └── form_config.py │ │ │ │ ├── connection_info.py │ │ │ │ ├── connector.py │ │ │ │ └── i18n │ │ │ │ ├── __init__.py │ │ │ │ └── localizer.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── icons │ │ │ │ ├── __init__.py │ │ │ │ ├── nav │ │ │ │ ├── __init__.py │ │ │ │ └── ydb.svg │ │ │ │ └── standard │ │ │ │ ├── __init__.py │ │ │ │ └── ydb.svg │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter.py │ │ │ │ ├── data_source.py │ │ │ │ ├── query_compiler.py │ │ │ │ ├── row_converters.py │ │ │ │ └── type_transformer.py │ │ │ └── ydb │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter.py │ │ │ │ ├── connection_executors.py │ │ │ │ ├── connector.py │ │ │ │ ├── constants.py │ │ │ │ ├── data_source.py │ │ │ │ ├── dto.py │ │ │ │ ├── settings.py │ │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ └── connection.py │ │ │ │ ├── target_dto.py │ │ │ │ └── us_connection.py │ │ ├── db_testing │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ └── engine_wrapper.py │ │ ├── formula │ │ │ ├── __init__.py │ │ │ ├── connector.py │ │ │ ├── constants.py │ │ │ └── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── conditional_blocks.py │ │ │ │ ├── functions_aggregation.py │ │ │ │ ├── functions_datetime.py │ │ │ │ ├── functions_hash.py │ │ │ │ ├── functions_logical.py │ │ │ │ ├── functions_markup.py │ │ │ │ ├── functions_math.py │ │ │ │ ├── functions_native.py │ │ │ │ ├── functions_string.py │ │ │ │ ├── functions_type.py │ │ │ │ ├── operators_binary.py │ │ │ │ ├── operators_ternary.py │ │ │ │ └── operators_unary.py │ │ ├── formula_ref │ │ │ ├── __init__.py │ │ │ ├── human_dialects.py │ │ │ ├── i18n.py │ │ │ └── plugin.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_connector_ydb.mo │ │ │ │ │ ├── dl_connector_ydb.po │ │ │ │ │ ├── dl_formula_ref_dl_connector_ydb.mo │ │ │ │ │ └── dl_formula_ref_dl_connector_ydb.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_connector_ydb.mo │ │ │ │ ├── dl_connector_ydb.po │ │ │ │ ├── dl_formula_ref_dl_connector_ydb.mo │ │ │ │ └── dl_formula_ref_dl_connector_ydb.po │ │ └── py.typed │ ├── dl_connector_ydb_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_dashsql.py │ │ │ │ ├── test_data.py │ │ │ │ ├── test_dataset.py │ │ │ │ └── test_datasource_template.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_adapter.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_executor.py │ │ │ │ ├── test_data_source.py │ │ │ │ └── test_dataset.py │ │ │ └── formula │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── test_conditional_blocks.py │ │ │ │ ├── test_functions_aggregation.py │ │ │ │ ├── test_functions_datetime.py │ │ │ │ ├── test_functions_hash.py │ │ │ │ ├── test_functions_logical.py │ │ │ │ ├── test_functions_markup.py │ │ │ │ ├── test_functions_math.py │ │ │ │ ├── test_functions_native.py │ │ │ │ ├── test_functions_string.py │ │ │ │ ├── test_functions_type_conversion.py │ │ │ │ ├── test_literals.py │ │ │ │ ├── test_misc_funcs.py │ │ │ │ └── test_operators.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── expected_forms │ │ │ ├── False_False_None_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ ├── False_False_None_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ ├── True_False_None_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_create.json │ │ │ └── True_False_None_True_TenantCommon(is_background_data_export_allowed=False, is_data_export_enabled=True)_edit.json │ │ │ └── test_connection_form.py │ ├── docker-compose-dev.yml │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-ydb │ │ └── db-ydb │ │ │ └── ydb-custom-entrypoint.sh │ └── pyproject.toml ├── dl_constants │ ├── LICENSE │ ├── dl_constants │ │ ├── __init__.py │ │ ├── api_constants.py │ │ ├── enums.py │ │ ├── exc.py │ │ ├── internal_constants.py │ │ ├── py.typed │ │ └── types.py │ ├── dl_constants_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_stuff.py │ └── pyproject.toml ├── dl_core │ ├── .coveragerc │ ├── .dockerignore │ ├── LICENSE │ ├── README.md │ ├── dl_core │ │ ├── __init__.py │ │ ├── aio │ │ │ ├── __init__.py │ │ │ ├── aiohttp_wrappers_data_core.py │ │ │ ├── metrics_view.py │ │ │ ├── middlewares │ │ │ │ ├── __init__.py │ │ │ │ ├── services_registry.py │ │ │ │ └── us_manager.py │ │ │ ├── ping_view.py │ │ │ └── web_app_services │ │ │ │ ├── __init__.py │ │ │ │ ├── data_processing │ │ │ │ ├── __init__.py │ │ │ │ ├── data_processor.py │ │ │ │ └── factory.py │ │ │ │ ├── gsheets.py │ │ │ │ └── redis.py │ │ ├── backend_types.py │ │ ├── base_models.py │ │ ├── bin │ │ │ ├── __init__.py │ │ │ └── query_executor_sync.py │ │ ├── component_errors.py │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── accessor.py │ │ │ ├── dependencies │ │ │ │ ├── __init__.py │ │ │ │ ├── avatar_tree.py │ │ │ │ ├── avatar_tree_base.py │ │ │ │ ├── factory.py │ │ │ │ ├── factory_base.py │ │ │ │ ├── factory_legacy.py │ │ │ │ ├── field_avatar.py │ │ │ │ ├── field_avatar_base.py │ │ │ │ ├── field_deep.py │ │ │ │ ├── field_deep_base.py │ │ │ │ ├── field_shallow.py │ │ │ │ ├── field_shallow_base.py │ │ │ │ ├── primitives.py │ │ │ │ ├── relation_avatar.py │ │ │ │ ├── relation_avatar_base.py │ │ │ │ └── relation_avatar_legacy.py │ │ │ ├── editor.py │ │ │ └── ids.py │ │ ├── connection_executors │ │ │ ├── __init__.py │ │ │ ├── _dia_user_data_flow.dot │ │ │ ├── adapters │ │ │ │ ├── __init__.py │ │ │ │ ├── adapter_actions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_base.py │ │ │ │ │ ├── db_version.py │ │ │ │ │ ├── sync_base.py │ │ │ │ │ ├── typed_query.py │ │ │ │ │ └── typed_query_raw.py │ │ │ │ ├── adapters_base.py │ │ │ │ ├── adapters_base_sa.py │ │ │ │ ├── adapters_base_sa_classic.py │ │ │ │ ├── async_adapters_aiohttp.py │ │ │ │ ├── async_adapters_base.py │ │ │ │ ├── async_adapters_remote.py │ │ │ │ ├── async_adapters_sync_wrapper.py │ │ │ │ ├── common_base.py │ │ │ │ ├── mixins.py │ │ │ │ └── sa_utils.py │ │ │ ├── async_base.py │ │ │ ├── async_sa_executors.py │ │ │ ├── common_base.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── connection_target_dto_base.py │ │ │ │ ├── constants.py │ │ │ │ ├── db_adapter_data.py │ │ │ │ ├── exc.py │ │ │ │ └── scoped_rci.py │ │ │ ├── qe_serializer │ │ │ │ ├── __init__.py │ │ │ │ ├── dba_actions.py │ │ │ │ ├── schema_actions.py │ │ │ │ ├── schema_base.py │ │ │ │ ├── schemas_common.py │ │ │ │ ├── schemas_exc.py │ │ │ │ ├── schemas_responses.py │ │ │ │ └── serializer.py │ │ │ ├── remote_query_executor │ │ │ │ ├── __init__.py │ │ │ │ ├── app_async.py │ │ │ │ ├── app_sync.py │ │ │ │ ├── commons.py │ │ │ │ ├── error_handler_rqe.py │ │ │ │ └── settings.py │ │ │ ├── sync_base.py │ │ │ └── sync_executor_wrapper.py │ │ ├── connection_models │ │ │ ├── __init__.py │ │ │ ├── common_models.py │ │ │ ├── conn_options.py │ │ │ └── dto_defs.py │ │ ├── connections_security │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── connectors │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ ├── dashsql.py │ │ │ │ ├── data_source_migration.py │ │ │ │ ├── error_handling.py │ │ │ │ ├── error_transformer.py │ │ │ │ ├── export_import.py │ │ │ │ ├── lifecycle.py │ │ │ │ ├── query_compiler.py │ │ │ │ ├── registrator.py │ │ │ │ └── schema_migration.py │ │ │ ├── registry.py │ │ │ ├── settings │ │ │ │ ├── __init__.py │ │ │ │ ├── mixins.py │ │ │ │ ├── primitives.py │ │ │ │ └── registry.py │ │ │ ├── sql_base │ │ │ │ ├── __init__.py │ │ │ │ ├── connector.py │ │ │ │ └── data_source_migration.py │ │ │ └── ssl_common │ │ │ │ ├── __init__.py │ │ │ │ └── adapter.py │ │ ├── constants.py │ │ ├── core_connectors.py │ │ ├── core_data_processors.py │ │ ├── data_processing │ │ │ ├── __init__.py │ │ │ ├── cache │ │ │ │ ├── __init__.py │ │ │ │ └── utils.py │ │ │ ├── dashsql.py │ │ │ ├── prepared_components │ │ │ │ ├── __init__.py │ │ │ │ ├── default_manager.py │ │ │ │ ├── manager_base.py │ │ │ │ └── primitives.py │ │ │ ├── processing │ │ │ │ ├── __init__.py │ │ │ │ ├── cache │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exec_adapter.py │ │ │ │ │ └── processor.py │ │ │ │ ├── context.py │ │ │ │ ├── db_base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exec_adapter_base.py │ │ │ │ │ ├── op_executors.py │ │ │ │ │ └── processor_base.py │ │ │ │ ├── operation.py │ │ │ │ ├── processor.py │ │ │ │ └── source_db │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── processor.py │ │ │ │ │ └── selector_exec_adapter.py │ │ │ ├── query_compiler_registry.py │ │ │ ├── source_builder.py │ │ │ ├── stream_base.py │ │ │ ├── typed_query.py │ │ │ ├── typed_query_raw.py │ │ │ └── types.py │ │ ├── data_processors │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ └── plugin.py │ │ │ ├── ep_loader.py │ │ │ └── registrator.py │ │ ├── data_source │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── collection.py │ │ │ ├── sql.py │ │ │ ├── type_mapping.py │ │ │ └── utils.py │ │ ├── data_source_merge_tools.py │ │ ├── data_source_spec │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── collection.py │ │ │ ├── sql.py │ │ │ └── type_mapping.py │ │ ├── dataset_capabilities.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── elements.py │ │ │ └── schema.py │ │ ├── db_session_utils.py │ │ ├── enums.py │ │ ├── exc.py │ │ ├── fields.py │ │ ├── flask_utils │ │ │ ├── __init__.py │ │ │ ├── sentry.py │ │ │ ├── services_registry_middleware.py │ │ │ └── us_manager_middleware.py │ │ ├── i18n │ │ │ ├── __init__.py │ │ │ └── localizer.py │ │ ├── lifecycle │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dataset.py │ │ │ ├── factory.py │ │ │ └── factory_base.py │ │ ├── loader.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_core.mo │ │ │ │ │ └── dl_core.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_core.mo │ │ │ │ └── dl_core.po │ │ ├── logging_config.py │ │ ├── marshmallow.py │ │ ├── multisource.py │ │ ├── profiling_middleware.py │ │ ├── py.typed │ │ ├── query │ │ │ ├── __init__.py │ │ │ ├── bi_query.py │ │ │ └── expression.py │ │ ├── reporting │ │ │ ├── __init__.py │ │ │ ├── notifications.py │ │ │ └── reports.py │ │ ├── services_registry │ │ │ ├── __init__.py │ │ │ ├── cache_engine_factory.py │ │ │ ├── compute_executor.py │ │ │ ├── conn_executor_factory.py │ │ │ ├── conn_executor_factory_base.py │ │ │ ├── data_processor_factory.py │ │ │ ├── data_processor_factory_base.py │ │ │ ├── entity_checker.py │ │ │ ├── env_manager_factory.py │ │ │ ├── env_manager_factory_base.py │ │ │ ├── file_uploader_client_factory.py │ │ │ ├── inst_specific_sr.py │ │ │ ├── rqe_caches.py │ │ │ ├── sr_factories.py │ │ │ ├── top_level.py │ │ │ └── typing.py │ │ ├── united_storage_client.py │ │ ├── united_storage_client_aio.py │ │ ├── us_connection.py │ │ ├── us_connection_base.py │ │ ├── us_dataset.py │ │ ├── us_entry.py │ │ ├── us_manager │ │ │ ├── __init__.py │ │ │ ├── broken_link.py │ │ │ ├── crypto │ │ │ │ ├── __init__.py │ │ │ │ └── main.py │ │ │ ├── factory.py │ │ │ ├── local_cache.py │ │ │ ├── mutation_cache │ │ │ │ ├── __init__.py │ │ │ │ ├── engine_factory.py │ │ │ │ ├── mutation_key_base.py │ │ │ │ ├── usentry_mutation_cache.py │ │ │ │ └── usentry_mutation_cache_factory.py │ │ │ ├── schema_migration │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dataset.py │ │ │ │ ├── factory.py │ │ │ │ └── factory_base.py │ │ │ ├── settings.py │ │ │ ├── storage_schemas │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── base_types.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_ref_field.py │ │ │ │ ├── connection_schema_registry.py │ │ │ │ ├── data_source_collection.py │ │ │ │ ├── data_source_spec.py │ │ │ │ ├── data_source_spec_base.py │ │ │ │ ├── dataset.py │ │ │ │ ├── error_registry.py │ │ │ │ ├── index_info.py │ │ │ │ └── raw_schema.py │ │ │ ├── us_entry_serializer.py │ │ │ ├── us_manager.py │ │ │ ├── us_manager_async.py │ │ │ ├── us_manager_dummy.py │ │ │ ├── us_manager_sync.py │ │ │ ├── us_manager_sync_mock.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── fake_us_client.py │ │ └── utils.py │ ├── dl_core_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── compeng │ │ │ │ ├── __init__.py │ │ │ │ ├── test_compeng_cache.py │ │ │ │ ├── test_pg_op_exec_adapter.py │ │ │ │ └── test_pg_op_processor.py │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── test_apply_migration.py │ │ │ │ ├── test_avatar_tree_resolution.py │ │ │ │ ├── test_component_errors.py │ │ │ │ ├── test_rqe.py │ │ │ │ └── test_services_registry.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── test_data_source.py │ │ │ └── test_typed_query.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── test_dependencies.py │ │ │ └── test_make_field_id.py │ │ │ ├── conftest.py │ │ │ ├── data_processing │ │ │ ├── __init__.py │ │ │ └── test_streaming.py │ │ │ ├── data_source │ │ │ ├── __init__.py │ │ │ └── base │ │ │ │ ├── __init__.py │ │ │ │ └── test_renderer.py │ │ │ ├── marshmallow │ │ │ ├── __init__.py │ │ │ ├── test_base64_string_field.py │ │ │ └── test_on_off_field.py │ │ │ ├── test_error_transformer.py │ │ │ ├── test_fields.py │ │ │ ├── test_qe_schemas.py │ │ │ ├── test_utils.py │ │ │ └── us_manager │ │ │ ├── __init__.py │ │ │ ├── test_migration.py │ │ │ └── test_us_client.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse │ │ └── db-clickhouse │ │ │ ├── docker-entrypoint-initdb.d │ │ │ └── prepare_db.sql │ │ │ └── users.xml │ └── pyproject.toml ├── dl_core_testing │ ├── LICENSE │ ├── README.md │ ├── dl_core_testing │ │ ├── __init__.py │ │ ├── app_test_workarounds.py │ │ ├── configuration.py │ │ ├── connection.py │ │ ├── connector.py │ │ ├── csv_table_dumper.py │ │ ├── data.py │ │ ├── data_adapter_mock.py │ │ ├── database.py │ │ ├── dataset.py │ │ ├── dataset_builder.py │ │ ├── dataset_wrappers.py │ │ ├── engine_wrapper.py │ │ ├── environment.py │ │ ├── executors.py │ │ ├── fixture_server_runner.py │ │ ├── fixtures │ │ │ ├── __init__.py │ │ │ ├── dispenser.py │ │ │ ├── primitives.py │ │ │ ├── sample_superstore.csv │ │ │ └── sample_tables.py │ │ ├── flask_utils.py │ │ ├── initialization.py │ │ ├── py.typed │ │ ├── rqe.py │ │ ├── testcases │ │ │ ├── __init__.py │ │ │ ├── adapter.py │ │ │ ├── connection.py │ │ │ ├── connection_executor.py │ │ │ ├── data_source.py │ │ │ ├── dataset.py │ │ │ ├── remote_query_executor.py │ │ │ ├── service_base.py │ │ │ ├── typed_query.py │ │ │ └── typed_query_raw.py │ │ └── utils.py │ └── pyproject.toml ├── dl_dashsql │ ├── LICENSE │ ├── README.md │ ├── dl_dashsql │ │ ├── __init__.py │ │ ├── exc.py │ │ ├── formatting │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── placeholder.py │ │ │ ├── placeholder_dbapi.py │ │ │ ├── placeholder_jinja.py │ │ │ ├── shortcuts.py │ │ │ └── values.py │ │ ├── literalizer.py │ │ ├── py.typed │ │ ├── registry.py │ │ ├── typed_query │ │ │ ├── __init__.py │ │ │ ├── primitives.py │ │ │ ├── processor │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── cache.py │ │ │ ├── query_serialization.py │ │ │ └── result_serialization.py │ │ └── types.py │ └── pyproject.toml ├── dl_db_testing │ ├── LICENSE │ ├── README.md │ ├── dl_db_testing │ │ ├── __init__.py │ │ ├── connector_registration.py │ │ ├── connectors │ │ │ ├── __init__.py │ │ │ └── base │ │ │ │ ├── __init__.py │ │ │ │ └── connector.py │ │ ├── database │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dispenser.py │ │ │ └── engine_wrapper.py │ │ ├── db_testing_connectors.py │ │ ├── loader.py │ │ └── py.typed │ └── pyproject.toml ├── dl_file_secure_reader_lib │ ├── LICENSE │ ├── README.md │ ├── dl_file_secure_reader_lib │ │ ├── __init__.py │ │ ├── app.py │ │ ├── patches │ │ │ ├── __init__.py │ │ │ └── patch_openpyxl.py │ │ ├── py.typed │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── ping.py │ │ │ └── reader.py │ │ └── settings.py │ ├── dl_file_secure_reader_lib_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── data.xlsx │ │ │ ├── data_yadocs_corrupted.xlsx │ │ │ ├── test_ping.py │ │ │ └── test_reader.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── conftest.py │ └── pyproject.toml ├── dl_file_uploader_api_lib │ ├── LICENSE │ ├── README.md │ ├── dl_file_uploader_api_lib │ │ ├── __init__.py │ │ ├── aiohttp_services │ │ │ ├── __init__.py │ │ │ ├── crypto.py │ │ │ ├── error_handler.py │ │ │ └── s3_service.py │ │ ├── app.py │ │ ├── data_file_preparer.py │ │ ├── dl_request.py │ │ ├── py.typed │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── errors.py │ │ │ ├── files.py │ │ │ ├── misc.py │ │ │ └── sources.py │ │ ├── settings.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── files.py │ │ │ ├── misc.py │ │ │ └── sources.py │ ├── dl_file_uploader_api_lib_tests │ │ ├── __init__.py │ │ ├── config.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── data.xlsx │ │ │ ├── test_app.py │ │ │ ├── test_files_api.py │ │ │ ├── test_misc_api.py │ │ │ └── test_sources_api.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── params.yml │ │ │ ├── test_documents_api.py │ │ │ ├── test_links_api.py │ │ │ ├── test_update_data_gsheets.py │ │ │ └── test_update_data_yadocs.py │ │ ├── req_builder.py │ │ └── unit │ │ │ └── __init__.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse │ │ └── db-clickhouse │ │ │ └── users.xml │ └── pyproject.toml ├── dl_file_uploader_lib │ ├── LICENSE │ ├── README.md │ ├── dl_file_uploader_lib │ │ ├── __init__.py │ │ ├── common_locks.py │ │ ├── enums.py │ │ ├── exc.py │ │ ├── gsheets_client.py │ │ ├── py.typed │ │ ├── redis_model │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── models │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── storage_schemas.py │ │ ├── s3_model │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── models │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── storage_schemas.py │ │ ├── settings.py │ │ ├── settings_utils.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ └── data_gen.py │ │ └── yadocs_client.py │ ├── dl_file_uploader_lib_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_redis_models.py │ │ │ └── test_s3_models.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── params.yml │ │ │ └── test_gsheets_client.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── conftest.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_file_uploader_task_interface │ ├── LICENSE │ ├── README.rst │ ├── dl_file_uploader_task_interface │ │ ├── __init__.py │ │ ├── context.py │ │ ├── py.typed │ │ ├── tasks.py │ │ └── utils_service_registry.py │ └── pyproject.toml ├── dl_file_uploader_worker_lib │ ├── LICENSE │ ├── README.md │ ├── dl_file_uploader_worker_lib │ │ ├── __init__.py │ │ ├── app.py │ │ ├── py.typed │ │ ├── settings.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── cleanup.py │ │ │ ├── delete.py │ │ │ ├── download_gsheets.py │ │ │ ├── download_yadocs.py │ │ │ ├── excel.py │ │ │ ├── migrate_preview.py │ │ │ ├── parse.py │ │ │ └── save.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── app_factory.py │ │ │ └── task_processor_client.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── connection_error_tracker.py │ │ │ ├── converter_parsing_utils.py │ │ │ ├── file_parser.py │ │ │ ├── parsing_utils.py │ │ │ └── s3_utils.py │ ├── dl_file_uploader_worker_lib_tests │ │ ├── __init__.py │ │ ├── config.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── data │ │ │ │ ├── data.xlsx │ │ │ │ ├── invalid_excel.xlsx │ │ │ │ ├── no_header.xlsx │ │ │ │ └── one_row_table.xlsx │ │ │ ├── test_excel.py │ │ │ ├── test_tasks.py │ │ │ └── utils.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── params.yml │ │ │ ├── test_gsheets.py │ │ │ └── test_yadocs.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_parsing_utils.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse │ │ └── db-clickhouse │ │ │ └── users.xml │ └── pyproject.toml ├── dl_formula │ ├── .coveragerc │ ├── LICENSE │ ├── README.md │ ├── dl_formula │ │ ├── README.md │ │ ├── __init__.py │ │ ├── collections.py │ │ ├── connectors │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── column.py │ │ │ │ ├── connector.py │ │ │ │ ├── context_processor.py │ │ │ │ ├── literal.py │ │ │ │ └── type_constructor.py │ │ │ └── registration.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── aux_nodes.py │ │ │ ├── datatype.py │ │ │ ├── dialect.py │ │ │ ├── exc.py │ │ │ ├── extract.py │ │ │ ├── fork_nodes.py │ │ │ ├── index.py │ │ │ ├── message_ctx.py │ │ │ ├── nodes.py │ │ │ ├── position.py │ │ │ └── tag.py │ │ ├── definitions │ │ │ ├── __init__.py │ │ │ ├── args.py │ │ │ ├── base.py │ │ │ ├── common.py │ │ │ ├── common_datetime.py │ │ │ ├── conditional_blocks.py │ │ │ ├── flags.py │ │ │ ├── functions_aggregation.py │ │ │ ├── functions_array.py │ │ │ ├── functions_datetime.py │ │ │ ├── functions_hash.py │ │ │ ├── functions_logical.py │ │ │ ├── functions_markup.py │ │ │ ├── functions_math.py │ │ │ ├── functions_native.py │ │ │ ├── functions_special.py │ │ │ ├── functions_string.py │ │ │ ├── functions_time_series.py │ │ │ ├── functions_type.py │ │ │ ├── functions_window.py │ │ │ ├── literals.py │ │ │ ├── ll_registry_loader.py │ │ │ ├── operators_binary.py │ │ │ ├── operators_ternary.py │ │ │ ├── operators_unary.py │ │ │ ├── registry.py │ │ │ ├── scope.py │ │ │ └── type_strategy.py │ │ ├── dot.py │ │ ├── formula_connectors.py │ │ ├── inspect │ │ │ ├── __init__.py │ │ │ ├── env.py │ │ │ ├── expression.py │ │ │ ├── function.py │ │ │ ├── literal.py │ │ │ ├── node.py │ │ │ └── registry │ │ │ │ ├── __init__.py │ │ │ │ ├── item.py │ │ │ │ └── registry.py │ │ ├── loader.py │ │ ├── mutation │ │ │ ├── __init__.py │ │ │ ├── bfb.py │ │ │ ├── dim_resolution.py │ │ │ ├── general.py │ │ │ ├── lod.py │ │ │ ├── lookup.py │ │ │ ├── mutation.py │ │ │ ├── optimization.py │ │ │ ├── registry.py │ │ │ └── window.py │ │ ├── parser │ │ │ ├── __init__.py │ │ │ ├── antlr │ │ │ │ ├── DataLens.g4 │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── gen │ │ │ │ │ ├── DataLens.interp │ │ │ │ │ ├── DataLens.tokens │ │ │ │ │ ├── DataLensLexer.interp │ │ │ │ │ ├── DataLensLexer.py │ │ │ │ │ ├── DataLensLexer.tokens │ │ │ │ │ ├── DataLensParser.py │ │ │ │ │ ├── DataLensVisitor.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── main.py │ │ │ │ └── visitor.py │ │ │ ├── base.py │ │ │ └── factory.py │ │ ├── py.typed │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ └── formula_cli.py │ │ ├── shortcuts.py │ │ ├── slicing │ │ │ ├── __init__.py │ │ │ ├── env.py │ │ │ ├── schema.py │ │ │ └── slicer.py │ │ ├── translation │ │ │ ├── __init__.py │ │ │ ├── columns.py │ │ │ ├── context.py │ │ │ ├── context_processing.py │ │ │ ├── env.py │ │ │ ├── ext_nodes.py │ │ │ ├── sa_dialects.py │ │ │ ├── translator.py │ │ │ └── type_strategy.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── caching.py │ │ │ └── datetime.py │ │ └── validation │ │ │ ├── __init__.py │ │ │ ├── aggregation.py │ │ │ ├── env.py │ │ │ ├── validator.py │ │ │ └── window.py │ ├── dl_formula_tests │ │ ├── .gitignore │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── test_extracts.py │ │ │ └── test_nodes.py │ │ │ ├── inspect │ │ │ ├── __init__.py │ │ │ ├── test_expression.py │ │ │ └── test_function.py │ │ │ ├── mutation │ │ │ ├── __init__.py │ │ │ ├── test_general.py │ │ │ ├── test_lod.py │ │ │ ├── test_muation.py │ │ │ ├── test_optimization.py │ │ │ ├── test_subquery_mutations.py │ │ │ └── test_window_mutations.py │ │ │ ├── parser │ │ │ ├── __init__.py │ │ │ └── test_parser.py │ │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── test_formula_cli.py │ │ │ ├── slicing │ │ │ ├── __init__.py │ │ │ └── test_slicer.py │ │ │ ├── test_shortcuts.py │ │ │ ├── translation │ │ │ ├── __init__.py │ │ │ ├── test_stats.py │ │ │ ├── test_translator.py │ │ │ └── test_type_resolution.py │ │ │ ├── utils │ │ │ ├── __init__.py │ │ │ └── test_caching.py │ │ │ └── validation │ │ │ ├── __init__.py │ │ │ ├── test_aggregation.py │ │ │ └── test_window.py │ └── pyproject.toml ├── dl_formula_ref │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── babel.ini │ ├── dl_formula_ref │ │ ├── __init__.py │ │ ├── audience.py │ │ ├── categories │ │ │ ├── __init__.py │ │ │ ├── aggregation.py │ │ │ ├── array.py │ │ │ ├── date.py │ │ │ ├── logical.py │ │ │ ├── markup.py │ │ │ ├── mathematical.py │ │ │ ├── operator.py │ │ │ ├── string.py │ │ │ ├── time_series.py │ │ │ ├── type_conversion.py │ │ │ └── window.py │ │ ├── config.py │ │ ├── example_data.json │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── data_prep.py │ │ │ ├── data_table.py │ │ │ ├── dumper.py │ │ │ ├── query.py │ │ │ ├── query_gen.py │ │ │ ├── renderer.py │ │ │ ├── result_storage.py │ │ │ ├── sa_compiler.py │ │ │ └── utils.py │ │ ├── formula_ref_plugins.py │ │ ├── function_extension.py │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── aggregation.py │ │ │ ├── array.py │ │ │ ├── date.py │ │ │ ├── logical.py │ │ │ ├── markup.py │ │ │ ├── mathematical.py │ │ │ ├── operator.py │ │ │ ├── string.py │ │ │ ├── time_series.py │ │ │ ├── type_conversion.py │ │ │ └── window.py │ │ ├── generator.py │ │ ├── i18n │ │ │ ├── __init__.py │ │ │ └── registry.py │ │ ├── loader.py │ │ ├── locales │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── dl_formula_ref_dl_formula_ref.mo │ │ │ │ │ └── dl_formula_ref_dl_formula_ref.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── dl_formula_ref_dl_formula_ref.mo │ │ │ │ └── dl_formula_ref_dl_formula_ref.po │ │ ├── localization.py │ │ ├── paths.py │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ └── plugin.py │ │ │ ├── default │ │ │ │ ├── __init__.py │ │ │ │ ├── i18n.py │ │ │ │ └── plugin.py │ │ │ └── registration.py │ │ ├── primitives.py │ │ ├── py.typed │ │ ├── reference.py │ │ ├── registry │ │ │ ├── __init__.py │ │ │ ├── aliased_res.py │ │ │ ├── arg_base.py │ │ │ ├── arg_common.py │ │ │ ├── arg_extractor.py │ │ │ ├── base.py │ │ │ ├── dialect_base.py │ │ │ ├── dialect_extractor.py │ │ │ ├── env.py │ │ │ ├── example.py │ │ │ ├── example_base.py │ │ │ ├── impl_selector.py │ │ │ ├── impl_selector_base.py │ │ │ ├── impl_spec.py │ │ │ ├── naming.py │ │ │ ├── note.py │ │ │ ├── note_extr_base.py │ │ │ ├── note_extractor.py │ │ │ ├── registry.py │ │ │ ├── return_base.py │ │ │ ├── return_extractor.py │ │ │ ├── scopes.py │ │ │ ├── signature_base.py │ │ │ ├── signature_gen.py │ │ │ ├── text.py │ │ │ └── tools.py │ │ ├── rendered.py │ │ ├── rendering.py │ │ ├── rich_text │ │ │ ├── __init__.py │ │ │ ├── elements.py │ │ │ ├── expander.py │ │ │ ├── helpers.py │ │ │ ├── macro.py │ │ │ └── renderer.py │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── example_data.py │ │ │ └── formula_doc.py │ │ ├── templates │ │ │ ├── doc_availability.md.jinja │ │ │ ├── doc_example.md.jinja │ │ │ ├── doc_func_long.md.jinja │ │ │ ├── doc_func_short.md.jinja │ │ │ └── doc_list.md.jinja │ │ └── texts.py │ ├── dl_formula_ref_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── examples │ │ │ │ ├── __init__.py │ │ │ │ ├── test_dumper.py │ │ │ │ └── test_preparation.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── examples │ │ │ ├── __init__.py │ │ │ ├── test_query_gen.py │ │ │ └── test_result_storage.py │ │ │ ├── rich_text │ │ │ ├── __init__.py │ │ │ ├── test_expander.py │ │ │ └── test_renderer.py │ │ │ ├── scripts │ │ │ ├── __init__.py │ │ │ └── test_formula_doc.py │ │ │ └── test_signature_gen.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── Dockerfile.db-clickhouse-22-10 │ │ ├── db-clickhouse │ │ │ ├── docker-entrypoint-initdb.d │ │ │ │ └── datalens_test.sql │ │ │ └── users.xml │ │ └── translations │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dl_formula_testing │ ├── LICENSE │ ├── README.md │ ├── dl_formula_testing │ │ ├── __init__.py │ │ ├── configuration.py │ │ ├── database.py │ │ ├── evaluator.py │ │ ├── forced_literal.py │ │ ├── initialization.py │ │ ├── py.typed │ │ ├── table.py │ │ ├── testcases │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── conditional_blocks.py │ │ │ ├── dialect.py │ │ │ ├── functions_aggregation.py │ │ │ ├── functions_array.py │ │ │ ├── functions_datetime.py │ │ │ ├── functions_hash.py │ │ │ ├── functions_logical.py │ │ │ ├── functions_markup.py │ │ │ ├── functions_math.py │ │ │ ├── functions_native.py │ │ │ ├── functions_string.py │ │ │ ├── functions_type_conversion.py │ │ │ ├── functions_window.py │ │ │ ├── literals.py │ │ │ ├── misc_funcs.py │ │ │ └── operators.py │ │ ├── tool_runner.py │ │ └── util.py │ ├── mypy.ini │ └── pyproject.toml ├── dl_httpx │ ├── LICENSE │ ├── README.md │ ├── dl_httpx │ │ ├── __init__.py │ │ ├── client.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── typed.py │ │ ├── py.typed │ │ └── testing │ │ │ ├── __init__.py │ │ │ └── client.py │ ├── dl_httpx_tests │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── clients │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_async.py │ │ │ └── test_sync.py │ │ │ ├── conftest.py │ │ │ └── models │ │ │ ├── __init__.py │ │ │ └── test_typed.py │ └── pyproject.toml ├── dl_i18n │ ├── LICENSE │ ├── README.md │ ├── dl_i18n │ │ ├── __init__.py │ │ ├── exc.py │ │ ├── localizer_base.py │ │ └── py.typed │ └── pyproject.toml ├── dl_json │ ├── LICENSE │ ├── README.md │ ├── dl_json │ │ ├── __init__.py │ │ ├── json.py │ │ ├── py.typed │ │ └── types.py │ ├── dl_json_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_json.py │ └── pyproject.toml ├── dl_logging │ ├── LICENSE │ ├── README.md │ ├── dl_logging │ │ ├── __init__.py │ │ ├── config.py │ │ ├── context.py │ │ ├── filter.py │ │ ├── format.py │ │ ├── py.typed │ │ └── settings.py │ ├── dl_logging_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_config.py │ │ │ └── test_format.py │ └── pyproject.toml ├── dl_maintenance │ ├── LICENSE │ ├── README.md │ ├── dl_maintenance │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── crawler_runner.py │ │ │ ├── crawlers │ │ │ │ ├── __init__.py │ │ │ │ └── schema_version_migration.py │ │ │ ├── data_access.py │ │ │ ├── errors.py │ │ │ ├── helpers.py │ │ │ └── updates.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── crawlers │ │ │ │ ├── __init__.py │ │ │ │ ├── config_metric_collector.py │ │ │ │ └── crypto_keys_rotation.py │ │ │ ├── logging_config.py │ │ │ └── us_crawler_base.py │ │ ├── diff_utils.py │ │ └── py.typed │ └── pyproject.toml ├── dl_model_tools │ ├── LICENSE │ ├── README.md │ ├── dl_model_tools │ │ ├── __init__.py │ │ ├── msgpack.py │ │ ├── py.typed │ │ ├── schema │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dynamic_enum_field.py │ │ │ ├── oneofschema.py │ │ │ └── typed_values.py │ │ ├── serialization.py │ │ └── typed_values.py │ ├── dl_model_tools_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── conftest.py │ │ │ ├── test_dyn_enum_field.py │ │ │ ├── test_json_serializer.py │ │ │ └── test_msgpack.py │ └── pyproject.toml ├── dl_pivot │ ├── LICENSE │ ├── README.md │ ├── dl_pivot │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── data_frame.py │ │ │ ├── facade.py │ │ │ ├── paginator.py │ │ │ ├── plugin.py │ │ │ ├── sorter.py │ │ │ ├── transformer.py │ │ │ └── transformer_factory.py │ │ ├── empty │ │ │ ├── __init__.py │ │ │ ├── data_frame.py │ │ │ ├── facade.py │ │ │ ├── paginator.py │ │ │ └── sorter.py │ │ ├── hashable_packing.py │ │ ├── native │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── data_frame.py │ │ │ ├── facade.py │ │ │ ├── paginator.py │ │ │ ├── plugin.py │ │ │ ├── sorter.py │ │ │ ├── transformer.py │ │ │ └── transformer_factory.py │ │ ├── pivot_legend.py │ │ ├── plugin_registration.py │ │ ├── primitives.py │ │ ├── py.typed │ │ ├── sort_helpers.py │ │ ├── sort_strategy.py │ │ ├── stream_modifiers.py │ │ └── table.py │ └── pyproject.toml ├── dl_pivot_pandas │ ├── LICENSE │ ├── README.md │ ├── dl_pivot_pandas │ │ ├── __init__.py │ │ ├── pandas │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── data_frame.py │ │ │ ├── facade.py │ │ │ ├── paginator.py │ │ │ ├── plugin.py │ │ │ ├── sorter.py │ │ │ ├── transformer.py │ │ │ └── transformer_factory.py │ │ └── py.typed │ └── pyproject.toml ├── dl_pydantic │ ├── LICENSE │ ├── README.md │ ├── dl_pydantic │ │ ├── __init__.py │ │ ├── base.py │ │ ├── jsonable.py │ │ ├── py.typed │ │ └── typed.py │ ├── dl_pydantic_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── jsonable │ │ │ ├── __init__.py │ │ │ ├── test_date.py │ │ │ ├── test_datetime.py │ │ │ ├── test_datetime_with_timezone.py │ │ │ ├── test_timedelta.py │ │ │ └── test_uuid.py │ │ │ ├── test_base.py │ │ │ └── test_typed.py │ └── pyproject.toml ├── dl_query_processing │ ├── LICENSE │ ├── README.md │ ├── dl_query_processing │ │ ├── __init__.py │ │ ├── base_specs │ │ │ ├── __init__.py │ │ │ └── dimensions.py │ │ ├── column_registry.py │ │ ├── compilation │ │ │ ├── __init__.py │ │ │ ├── field_registry.py │ │ │ ├── filter_compiler.py │ │ │ ├── formula_compiler.py │ │ │ ├── helpers.py │ │ │ ├── primitives.py │ │ │ ├── query_compiler.py │ │ │ ├── query_meta.py │ │ │ ├── query_mutator.py │ │ │ ├── specs.py │ │ │ ├── type_mapping.py │ │ │ └── wrapper_applicator.py │ │ ├── enums.py │ │ ├── exc.py │ │ ├── execution │ │ │ ├── __init__.py │ │ │ ├── exec_info.py │ │ │ ├── executor.py │ │ │ └── primitives.py │ │ ├── legend │ │ │ ├── __init__.py │ │ │ ├── block_legend.py │ │ │ └── field_legend.py │ │ ├── merging │ │ │ ├── __init__.py │ │ │ ├── binary_merger.py │ │ │ ├── merger.py │ │ │ └── primitives.py │ │ ├── multi_query │ │ │ ├── __init__.py │ │ │ ├── factory.py │ │ │ ├── mutators │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── splitter_based.py │ │ │ │ └── winfunc_compeng.py │ │ │ ├── splitters │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── mask_based.py │ │ │ │ ├── prefiltered.py │ │ │ │ ├── query_fork.py │ │ │ │ └── win_func.py │ │ │ └── tools.py │ │ ├── pagination │ │ │ ├── __init__.py │ │ │ ├── paginator.py │ │ │ ├── post_paginator.py │ │ │ └── pre_paginator.py │ │ ├── postprocessing │ │ │ ├── __init__.py │ │ │ ├── postprocessor.py │ │ │ ├── postprocessors │ │ │ │ ├── __init__.py │ │ │ │ ├── all.py │ │ │ │ ├── datetime.py │ │ │ │ ├── geo.py │ │ │ │ └── markup.py │ │ │ └── primitives.py │ │ ├── py.typed │ │ ├── translation │ │ │ ├── __init__.py │ │ │ ├── error_collector.py │ │ │ ├── flat_translator.py │ │ │ ├── multi_level_translator.py │ │ │ └── primitives.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── datetime.py │ │ │ └── name_gen.py │ ├── dl_query_processing_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── merging │ │ │ ├── __init__.py │ │ │ └── test_binary_merger.py │ │ │ ├── multi_query │ │ │ ├── __init__.py │ │ │ └── test_splitter.py │ │ │ ├── postprocessing │ │ │ ├── __init__.py │ │ │ └── test_markup.py │ │ │ ├── test_pagination.py │ │ │ └── utils.py │ └── pyproject.toml ├── dl_rate_limiter │ ├── LICENSE │ ├── README.md │ ├── dl_rate_limiter │ │ ├── __init__.py │ │ ├── event_rate_limiter.py │ │ ├── middlewares │ │ │ ├── __init__.py │ │ │ ├── aiohttp.py │ │ │ └── flask.py │ │ ├── py.typed │ │ └── request_rate_limiter.py │ ├── dl_rate_limiter_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── middlewares │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_aiohttp.py │ │ │ │ └── test_flask.py │ │ │ └── test_event_rate_limiter.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_request_rate_limiter.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_retrier │ ├── LICENSE │ ├── README.md │ ├── dl_retrier │ │ ├── __init__.py │ │ ├── exc.py │ │ ├── policy.py │ │ ├── py.typed │ │ └── settings.py │ ├── dl_retrier_tests │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_retriers.py │ └── pyproject.toml ├── dl_rls │ ├── LICENSE │ ├── README.md │ ├── dl_rls │ │ ├── __init__.py │ │ ├── exc.py │ │ ├── models.py │ │ ├── py.typed │ │ ├── rls.py │ │ ├── schema.py │ │ ├── serializer.py │ │ ├── subject_resolver.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── rls_configs │ │ │ │ ├── bad │ │ │ │ ├── bad_login │ │ │ │ ├── dl_api_lib_group_config │ │ │ │ ├── dl_api_lib_group_config_v2.json │ │ │ │ ├── dl_api_lib_test_config │ │ │ │ ├── dl_api_lib_test_config_v2.json │ │ │ │ ├── groups │ │ │ │ ├── groups.json │ │ │ │ ├── groups_to_compare │ │ │ │ ├── missing_login │ │ │ │ ├── missing_login.json │ │ │ │ ├── missing_login_to_compare │ │ │ │ ├── missing_login_updated │ │ │ │ ├── missing_login_updated.json │ │ │ │ ├── simple │ │ │ │ ├── simple.json │ │ │ │ ├── simple_to_compare │ │ │ │ ├── simple_updated │ │ │ │ ├── simple_updated.json │ │ │ │ ├── simple_v1_from_v2 │ │ │ │ ├── simple_v2.json │ │ │ │ ├── wildcards │ │ │ │ ├── wildcards.json │ │ │ │ └── wildcards_to_compare │ │ │ └── testing_data.py │ │ └── utils.py │ ├── dl_rls_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_rls.py │ │ │ ├── test_schema.py │ │ │ ├── test_serializer.py │ │ │ └── test_utils.py │ └── pyproject.toml ├── dl_s3 │ ├── LICENSE │ ├── README.md │ ├── dl_s3 │ │ ├── __init__.py │ │ ├── data_sink │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── json_each_row.py │ │ │ └── raw_bytes.py │ │ ├── py.typed │ │ ├── s3_service.py │ │ ├── stream.py │ │ └── utils.py │ └── pyproject.toml ├── dl_settings │ ├── LICENSE │ ├── README.md │ ├── dl_settings │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── fallback.py │ │ │ ├── fallback_settings.py │ │ │ ├── settings.py │ │ │ └── typed.py │ │ ├── py.typed │ │ └── validators │ │ │ ├── __init__.py │ │ │ ├── decode.py │ │ │ ├── json.py │ │ │ └── split.py │ ├── dl_settings_tests │ │ ├── __init__.py │ │ ├── unit │ │ │ ├── __init__.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── test_fallback.py │ │ │ │ ├── test_settings.py │ │ │ │ └── test_typed.py │ │ │ ├── conftest.py │ │ │ └── validators │ │ │ │ ├── __init__.py │ │ │ │ ├── decode │ │ │ │ ├── __init__.py │ │ │ │ └── test_decode_multiline.py │ │ │ │ ├── json │ │ │ │ ├── __init__.py │ │ │ │ └── test_json_dict.py │ │ │ │ └── split │ │ │ │ ├── __init__.py │ │ │ │ └── test_split.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── tmp_configs.py │ └── pyproject.toml ├── dl_sqlalchemy_bitrix │ ├── LICENSE │ ├── README.md │ ├── dl_sqlalchemy_bitrix │ │ ├── __init__.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_bitrix_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ └── pyproject.toml ├── dl_sqlalchemy_chyt │ ├── LICENSE │ ├── README.rst │ ├── dl_sqlalchemy_chyt │ │ ├── __init__.py │ │ ├── base.py │ │ ├── py.typed │ │ ├── table_engine.py │ │ └── types.py │ └── pyproject.toml ├── dl_sqlalchemy_clickhouse │ ├── LICENSE │ ├── README.rst │ ├── dl_sqlalchemy_clickhouse │ │ ├── __init__.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_clickhouse_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_dialect.py │ └── pyproject.toml ├── dl_sqlalchemy_common │ ├── LICENSE │ ├── README.rst │ ├── dl_sqlalchemy_common │ │ ├── __init__.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_common_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_prettify.py │ │ │ └── test_stuff.py │ └── pyproject.toml ├── dl_sqlalchemy_metrica_api │ ├── LICENSE │ ├── README.md │ ├── dl_sqlalchemy_metrica_api │ │ ├── __init__.py │ │ ├── api_client.py │ │ ├── api_info │ │ │ ├── __init__.py │ │ │ ├── appmetrica │ │ │ │ ├── __init__.py │ │ │ │ ├── audience.py │ │ │ │ ├── audience_socdem.py │ │ │ │ ├── client_events.py │ │ │ │ ├── crash_events.py │ │ │ │ ├── installs.py │ │ │ │ └── push_events.py │ │ │ └── metrika │ │ │ │ ├── __init__.py │ │ │ │ ├── advertising.py │ │ │ │ ├── hits.py │ │ │ │ ├── user_param.py │ │ │ │ └── visits.py │ │ ├── appmetrica_dbapi.py │ │ ├── base.py │ │ ├── exceptions.py │ │ ├── metrika_dbapi.py │ │ └── py.typed │ ├── dl_sqlalchemy_metrica_api_tests │ │ ├── __init__.py │ │ └── ext │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_dialect.py │ └── pyproject.toml ├── dl_sqlalchemy_mssql │ ├── LICENSE │ ├── README.md │ ├── dl_sqlalchemy_mssql │ │ ├── __init__.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_mssql_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ └── pyproject.toml ├── dl_sqlalchemy_mysql │ ├── LICENSE │ ├── dl_sqlalchemy_mysql │ │ ├── __init__.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_mysql_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ └── pyproject.toml ├── dl_sqlalchemy_oracle │ ├── LICENSE │ ├── dl_sqlalchemy_oracle │ │ ├── __init__.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_oracle_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_dialect.py │ └── pyproject.toml ├── dl_sqlalchemy_postgres │ ├── LICENSE │ ├── README.rst │ ├── dl_sqlalchemy_postgres │ │ ├── __init__.py │ │ ├── asyncpg.py │ │ ├── base.py │ │ └── py.typed │ ├── dl_sqlalchemy_postgres_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_pg_literal_bind.py │ │ │ └── test_server_version.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_collate.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_sqlalchemy_promql │ ├── LICENSE │ ├── README.rst │ ├── dl_sqlalchemy_promql │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cli.py │ │ ├── connection.py │ │ ├── cursor.py │ │ ├── dbapi.py │ │ ├── errors.py │ │ └── py.typed │ ├── dl_sqlalchemy_promql_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_stuff.py │ └── pyproject.toml ├── dl_sqlalchemy_ydb │ ├── LICENSE │ ├── README.rst │ ├── dl_sqlalchemy_ydb │ │ ├── __init__.py │ │ ├── dialect.py │ │ └── py.typed │ └── pyproject.toml ├── dl_task_processor │ ├── LICENSE │ ├── README.rst │ ├── dl_task_processor │ │ ├── __init__.py │ │ ├── arq_redis.py │ │ ├── arq_wrapper.py │ │ ├── context.py │ │ ├── controller.py │ │ ├── executor.py │ │ ├── processor.py │ │ ├── py.typed │ │ ├── state.py │ │ ├── task.py │ │ ├── upstream_worker.py │ │ └── worker.py │ ├── dl_task_processor_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_health_check.py │ │ │ └── test_schedule_task.py │ │ ├── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_executor.py │ │ └── utils.py │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_temporal │ ├── LICENSE │ ├── README.md │ ├── dl_temporal │ │ ├── __init__.py │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── temporal.py │ │ ├── base.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── exc.py │ │ │ └── metadata.py │ │ ├── py.typed │ │ ├── testing.py │ │ └── worker.py │ ├── dl_temporal_tests │ │ ├── __init__.py │ │ └── db │ │ │ ├── __init__.py │ │ │ ├── activities.py │ │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── config.yaml │ │ │ ├── conftest.py │ │ │ ├── test_handlers.py │ │ │ └── test_worker.py │ │ │ ├── client │ │ │ ├── __init__.py │ │ │ ├── test_check_auth.py │ │ │ ├── test_check_health.py │ │ │ ├── test_metadata.py │ │ │ └── test_schedule.py │ │ │ ├── conftest.py │ │ │ └── workflows.py │ ├── docker-compose-dev.yml │ ├── docker-compose.yml │ └── pyproject.toml ├── dl_testing │ ├── LICENSE │ ├── dl_testing │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── containers.py │ │ ├── env_params │ │ │ ├── __init__.py │ │ │ ├── generic.py │ │ │ ├── getter.py │ │ │ ├── loader.py │ │ │ └── main.py │ │ ├── files.py │ │ ├── py.typed │ │ ├── regulated_test.py │ │ ├── s3_utils.py │ │ ├── shared_testing_constants.py │ │ ├── test_data │ │ │ ├── __init__.py │ │ │ └── sql_queries.py │ │ └── utils.py │ ├── dl_testing_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_regulated_test.py │ └── pyproject.toml ├── dl_type_transformer │ ├── LICENSE │ ├── README.md │ ├── dl_type_transformer │ │ ├── __init__.py │ │ ├── converter_types_cast.py │ │ ├── exc.py │ │ ├── native_type.py │ │ ├── native_type_schema.py │ │ ├── py.typed │ │ ├── sa_types.py │ │ ├── sa_types_base.py │ │ └── type_transformer.py │ ├── dl_type_transformer_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── test_native_type.py │ └── pyproject.toml ├── dl_us_client │ ├── LICENSE │ ├── README.md │ ├── dl_us_client │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── py.typed │ │ └── us_workbook_cmd_client.py │ └── pyproject.toml ├── dl_utils │ ├── LICENSE │ ├── dl_utils │ │ ├── __init__.py │ │ ├── aio.py │ │ ├── entrypoints.py │ │ ├── func_tools.py │ │ ├── py.typed │ │ ├── streaming.py │ │ ├── task_runner.py │ │ ├── utils.py │ │ └── wait.py │ ├── dl_utils_tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── test_aio.py │ │ │ └── test_stuff.py │ └── pyproject.toml ├── dl_version │ ├── LICENSE │ ├── README.md │ ├── dl_version │ │ ├── __init__.py │ │ └── py.typed │ └── pyproject.toml ├── dl_zitadel │ ├── LICENSE │ ├── README.md │ ├── dl_zitadel │ │ ├── __init__.py │ │ ├── clients.py │ │ ├── middlewares │ │ │ ├── __init__.py │ │ │ ├── aiohttp.py │ │ │ ├── flask.py │ │ │ └── models.py │ │ ├── py.typed │ │ └── services.py │ ├── dl_zitadel_tests │ │ ├── __init__.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── middlewares │ │ │ │ └── __init__.py │ │ │ └── test_clients.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ └── services │ │ │ ├── __init__.py │ │ │ └── test_token_storage.py │ ├── docker-compose.yml │ ├── docker-compose │ │ ├── .gitignore │ │ ├── zitadel-post │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ │ └── zitadel-pre │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ └── pyproject.toml ├── dynamic_enum │ ├── LICENSE │ ├── README.md │ ├── dynamic_enum │ │ ├── __init__.py │ │ ├── dynamic_enum.py │ │ └── py.typed │ ├── dynamic_enum_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── test_dynamic_enum.py │ └── pyproject.toml ├── redis-cache-lock │ ├── LICENSE │ ├── README.rst │ ├── docker-compose.yml │ ├── pyproject.toml │ ├── pyproject.toml.upstream │ ├── redis_cache_lock │ │ ├── __init__.py │ │ ├── enums.py │ │ ├── exc.py │ │ ├── main.py │ │ ├── py.typed │ │ ├── redis_utils.py │ │ ├── scripts.py │ │ ├── scripts_support.py │ │ ├── types.py │ │ └── utils.py │ └── tests │ │ ├── __init__.py │ │ ├── test_cache.py │ │ └── test_utils.py ├── statcommons │ ├── .pylintrc │ ├── LICENSE │ ├── pyproject.toml │ └── statcommons │ │ ├── __init__.py │ │ ├── log_config.py │ │ ├── logs.py │ │ └── unistat │ │ ├── __init__.py │ │ ├── common.py │ │ └── uwsgi.py └── testenv-common │ ├── docker-compose.common.yml │ └── images │ ├── pg-us │ ├── Dockerfile │ └── docker-entrypoint-initdb.d │ │ └── extensions.sql │ ├── ssl-provider │ └── Dockerfile │ ├── temporal │ ├── Dockerfile │ └── dynamicconfig │ │ └── development.yaml │ └── us │ └── Dockerfile ├── metapkg ├── .dockerignore ├── LICENSE ├── poetry.lock ├── poetry.toml └── pyproject.toml ├── poetry.lock ├── pyproject.toml ├── terrarium ├── README.md ├── bi_ci │ ├── LICENSE │ ├── bi_ci │ │ ├── __init__.py │ │ ├── detect_affected_packages.py │ │ ├── do_we_need_compose.py │ │ ├── execute_mypy_multi.py │ │ ├── fix_ports_in_compose.py │ │ ├── get_compose_path.py │ │ ├── pkg_ref.py │ │ ├── run_tests.py │ │ └── split_pytest_tasks.py │ ├── bi_ci_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── conftest.py │ │ │ ├── resources │ │ │ ├── docker-compose.expected.yml │ │ │ ├── docker-compose.src.yml │ │ │ ├── pyproject.toml │ │ │ ├── sample.toml │ │ │ └── sample_without_tests.toml │ │ │ ├── test_fix_ports_in_compose.py │ │ │ ├── test_get_compose_path.py │ │ │ ├── test_run_tests.py │ │ │ └── test_split_pytest_tasks.py │ ├── poetry.lock │ └── pyproject.toml ├── dl_cli_tools │ ├── LICENSE │ ├── README.md │ ├── dl_cli_tools │ │ ├── __init__.py │ │ ├── cli_base.py │ │ ├── logging.py │ │ ├── py.typed │ │ └── testing │ │ │ ├── __init__.py │ │ │ └── tool_runner.py │ ├── dl_cli_tools_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── conftest.py │ ├── poetry.lock │ └── pyproject.toml ├── dl_gitmanager │ ├── LICENSE │ ├── README.md │ ├── dl_gitmanager │ │ ├── __init__.py │ │ ├── cherry_farmer.py │ │ ├── discovery.py │ │ ├── git_manager.py │ │ ├── py.typed │ │ └── scripts │ │ │ ├── __init__.py │ │ │ ├── cherry_farmer_cli.py │ │ │ └── gitmanager_cli.py │ ├── dl_gitmanager_tests │ │ ├── __init__.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── git_tools.py │ │ │ └── test_gitmanager.py │ ├── poetry.lock │ └── pyproject.toml └── dl_repmanager │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── Taskfile.yaml │ ├── dl_repmanager │ ├── __init__.py │ ├── dependency_resolution.py │ ├── exceptions.py │ ├── fs_editor.py │ ├── git_manager.py │ ├── management_plugins.py │ ├── metapkg_manager.py │ ├── metapkg_scoped_sync.py │ ├── mypy_stubs_sync.py │ ├── package_index.py │ ├── package_meta_reader.py │ ├── package_reference.py │ ├── primitives.py │ ├── project_editor.py │ ├── pypi_tools.py │ ├── repository_env.py │ ├── repository_manager.py │ ├── repository_navigator.py │ ├── requirements_tools.py │ ├── scripts │ │ ├── __init__.py │ │ ├── package_meta_cli.py │ │ ├── repmanager_cli.py │ │ └── scoped_metapkg_sync.py │ └── toml_tools.py │ ├── dl_repmanager_tests │ ├── __init__.py │ └── unit │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ ├── test_fs_editor.py │ │ └── tool_runner.py │ ├── poetry.lock │ ├── poetry.toml │ └── pyproject.toml └── tools ├── .env.sample ├── LICENSE ├── README.md ├── cookiecutter ├── taskfile.yaml └── templates │ └── package │ ├── cookiecutter.json │ ├── hooks │ └── post_gen_project.py │ └── {{cookiecutter.package_slug}} │ ├── LICENSE │ ├── README.md │ ├── pyproject.toml │ ├── {{cookiecutter.package_slug}} │ ├── __init__.py │ └── py.typed │ └── {{cookiecutter.package_slug}}_tests │ ├── __init__.py │ └── unit │ ├── __init__.py │ ├── conftest.py │ └── test_deleteme.py ├── e2e ├── README.md ├── Taskfile.yaml ├── docker-compose.e2e-dev-backend.yaml └── trivy.yaml ├── mypy_ignores ├── README.md └── mypy_ignores.ipynb ├── requirements-localhost.txt └── taskfiles ├── taskfile_code_quality.yml ├── taskfile_dev.yml ├── taskfile_env.yml ├── taskfile_gen.yml ├── taskfile_ops.yml └── taskfile_release.yaml /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.poetry-version: -------------------------------------------------------------------------------- 1 | 1.7.1 -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10.15 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Taskfile.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/Taskfile.dist.yml -------------------------------------------------------------------------------- /app/app_configs/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/app/app_configs/api.yaml -------------------------------------------------------------------------------- /app/dl_control_api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/app/dl_control_api/LICENSE -------------------------------------------------------------------------------- /app/dl_control_api/README.md: -------------------------------------------------------------------------------- 1 | # datalens-control-api 2 | -------------------------------------------------------------------------------- /app/dl_data_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/app/dl_data_api/Dockerfile -------------------------------------------------------------------------------- /app/dl_data_api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/app/dl_data_api/LICENSE -------------------------------------------------------------------------------- /app/dl_data_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/app/dl_data_api/README.md -------------------------------------------------------------------------------- /ci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/ci/LICENSE -------------------------------------------------------------------------------- /ci/build_naive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/ci/build_naive.sh -------------------------------------------------------------------------------- /ci/get_base_img_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/ci/get_base_img_hash.sh -------------------------------------------------------------------------------- /ci/gh_list_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/ci/gh_list_changes.sh -------------------------------------------------------------------------------- /ci/networks_addon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/ci/networks_addon.yml -------------------------------------------------------------------------------- /ci/stop_compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/ci/stop_compose.sh -------------------------------------------------------------------------------- /docker_build/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/docker_build/LICENSE -------------------------------------------------------------------------------- /docker_build/bake_apps.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/docker_build/bake_apps.hcl -------------------------------------------------------------------------------- /docker_build/bake_base.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/docker_build/bake_base.hcl -------------------------------------------------------------------------------- /docker_build/bake_ci.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/docker_build/bake_ci.hcl -------------------------------------------------------------------------------- /docker_build/null_context/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kb/how_to_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/kb/how_to_build.md -------------------------------------------------------------------------------- /kb/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/kb/index.md -------------------------------------------------------------------------------- /kb/test_embeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/kb/test_embeds.md -------------------------------------------------------------------------------- /kb/tooling/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/kb/tooling/index.md -------------------------------------------------------------------------------- /kb/tooling/task_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/kb/tooling/task_commands.md -------------------------------------------------------------------------------- /kb/using_kb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/kb/using_kb.md -------------------------------------------------------------------------------- /lib/.dockerignore: -------------------------------------------------------------------------------- 1 | **/.mypy_cache/* 2 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy/drivers/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy/drivers/native/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/drivers/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/drivers/native/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/orm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/clickhouse-sqlalchemy/clickhouse_sqlalchemy_tests/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_api_client/LICENSE -------------------------------------------------------------------------------- /lib/dl_api_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_api_client/README.md -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/dsmaker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/dsmaker/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/dsmaker/api/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/dsmaker/data_abstraction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/dsmaker/shortcuts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_client/dl_api_client_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_api_commons/LICENSE -------------------------------------------------------------------------------- /lib/dl_api_commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_api_commons/README.md -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/aio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/aiohttp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/reporting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons/retrier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons_tests/unit/aio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_commons/dl_api_commons_tests/unit/flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_api_connector/LICENSE -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/form_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/form_config/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/form_config/models/shortcuts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_connector/dl_api_connector_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_api_lib/LICENSE -------------------------------------------------------------------------------- /lib/dl_api_lib/README.md: -------------------------------------------------------------------------------- 1 | # dl_api_lib 2 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/aio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/aio/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/aio/middlewares/us_auth_ctx_blackbox.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/api_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/app/control_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/app/data_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/app/data_api/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/app/data_api/resources/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/connection_forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/connector_availability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/const.py: -------------------------------------------------------------------------------- 1 | DEFAULT_DATASET_LOCK_WAIT_TIMEOUT = 30 # seconds 2 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/public/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/query/formalization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/request_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/request_model/normalization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib/service_registry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/control_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/control_api/validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/data_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/data_api/caches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/data_api/pivot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/data_api/result/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/data_api/result/complex_queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/db/data_api/result/complex_queries/generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/unit/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/unit/drm_normalization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib/dl_api_lib_tests/unit/pivot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib_testing/dl_api_lib_testing/connector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib_testing/dl_api_lib_testing/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_api_lib_testing/dl_api_lib_testing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_api_base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_app_api_base/LICENSE -------------------------------------------------------------------------------- /lib/dl_app_api_base/README.md: -------------------------------------------------------------------------------- 1 | # dl-app-api-base 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/dl_app_api_base/dl_app_api_base/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_api_base/dl_app_api_base_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_api_base/dl_app_api_base_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_api_base/dl_app_api_base_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_api_base/dl_app_api_base_tests/unit/test_deleteme.py: -------------------------------------------------------------------------------- 1 | def test_placeholder() -> None: 2 | assert True 3 | -------------------------------------------------------------------------------- /lib/dl_app_base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_app_base/LICENSE -------------------------------------------------------------------------------- /lib/dl_app_base/README.md: -------------------------------------------------------------------------------- 1 | # dl-app-base 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/dl_app_base/dl_app_base/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_base/dl_app_base_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_base/dl_app_base_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_base/dl_app_base_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_base/dl_app_base_tests/unit/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_app_tools/LICENSE -------------------------------------------------------------------------------- /lib/dl_app_tools/dl_app_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_tools/dl_app_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_tools/dl_app_tools_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_tools/dl_app_tools_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_tools/dl_app_tools_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_app_tools/dl_app_tools_tests/unit/test_stuff.py: -------------------------------------------------------------------------------- 1 | def test_some() -> None: 2 | assert True 3 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/README.md: -------------------------------------------------------------------------------- 1 | # dl_attrs_model_mapper 2 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/dl_attrs_model_mapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/dl_attrs_model_mapper/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/dl_attrs_model_mapper/structs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/dl_attrs_model_mapper_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/dl_attrs_model_mapper_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper/dl_attrs_model_mapper_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper_doc_tools/README.md: -------------------------------------------------------------------------------- 1 | # dl_attrs_model_mapper_doc_tools 2 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper_doc_tools/dl_attrs_model_mapper_doc_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_attrs_model_mapper_doc_tools/dl_attrs_model_mapper_doc_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_auth/LICENSE -------------------------------------------------------------------------------- /lib/dl_auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_auth/README.md -------------------------------------------------------------------------------- /lib/dl_auth/dl_auth/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_auth/dl_auth/data.py -------------------------------------------------------------------------------- /lib/dl_auth/dl_auth/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth/dl_auth_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth/dl_auth_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth/dl_auth_tests/unit/auth_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth/dl_auth_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_auth/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_auth_api_lib/LICENSE -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/README.md: -------------------------------------------------------------------------------- 1 | # dl_auth_api_lib 2 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib/oauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_api_lib/dl_auth_api_lib_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_auth_native/LICENSE -------------------------------------------------------------------------------- /lib/dl_auth_native/README.md: -------------------------------------------------------------------------------- 1 | # dl_auth_native 2 | -------------------------------------------------------------------------------- /lib/dl_auth_native/dl_auth_native/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_native/dl_auth_native_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_native/dl_auth_native_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_native/dl_auth_native_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_auth_native/dl_auth_native_tests/unit/token/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_cache_engine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_cache_engine/LICENSE -------------------------------------------------------------------------------- /lib/dl_cache_engine/dl_cache_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_cache_engine/dl_cache_engine/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_cache_engine/dl_cache_engine_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_cache_engine/dl_cache_engine_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_cache_engine/dl_cache_engine_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_compeng_pg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_compeng_pg/LICENSE -------------------------------------------------------------------------------- /lib/dl_compeng_pg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_compeng_pg/README.md -------------------------------------------------------------------------------- /lib/dl_compeng_pg/dl_compeng_pg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_compeng_pg/dl_compeng_pg/compeng_aiopg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_compeng_pg/dl_compeng_pg/compeng_asyncpg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_compeng_pg/dl_compeng_pg/compeng_pg_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_compeng_pg/dl_compeng_pg/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_configs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_configs/LICENSE -------------------------------------------------------------------------------- /lib/dl_configs/dl_configs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_configs/dl_configs/settings_loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_configs/dl_configs_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_configs/dl_configs_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_configs/dl_configs_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery_tests/ext/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery_tests/ext/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery_tests/ext/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bigquery/dl_connector_bigquery_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_bitrix_gds 2 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds_tests/ext/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/dl_connector_bitrix_gds_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bitrix_gds/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_bundle_chs3 2 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_base/core/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_gsheets/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/chs3_yadocs/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/file/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/base/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/base/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/file/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/file/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/file/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/gsheets_v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/gsheets_v2/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/gsheets_v2/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/gsheets_v2/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/yadocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/yadocs/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/yadocs/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/dl_connector_bundle_chs3_tests/db/yadocs/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_bundle_chs3/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_chyt 2 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_chyt/dl_connector_chyt_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_clickhouse 2 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/core/clickhouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/core/clickhouse/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/core/clickhouse/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/core/clickhouse_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/core/clickhouse_base/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/formula/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/unit/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_clickhouse/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_greenplum 2 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/dl_connector_greenplum_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_greenplum/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_metrica 2 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/ext/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/ext/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_metrica/dl_connector_metrica_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_mssql 2 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/dl_connector_mssql_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mssql/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_mysql 2 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/dl_connector_mysql_tests/unit/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_mysql/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_oracle 2 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_oracle/dl_connector_oracle_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_postgresql 2 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/core/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/core/postgresql/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/core/postgresql/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/core/postgresql_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/core/postgresql_base/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/dl_connector_postgresql_tests/unit/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_postgresql/docker-compose/tests/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec "$@" 4 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_promql 2 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_promql/dl_connector_promql_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/core/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/ext/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/ext/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/ext/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_snowflake/dl_connector_snowflake_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/api/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/api/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/api/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/core/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/dl_connector_trino_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_trino/docker-compose/trino/catalog/blackhole.properties: -------------------------------------------------------------------------------- 1 | connector.name=blackhole 2 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_connector_ydb/LICENSE -------------------------------------------------------------------------------- /lib/dl_connector_ydb/README.md: -------------------------------------------------------------------------------- 1 | # dl_connector_ydb 2 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/api/ydb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/api/ydb/api_schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/api/ydb/connection_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/api/ydb/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/assets/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/assets/icons/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/assets/icons/standard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/core/ydb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/core/ydb/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/db_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/db/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/db/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/db/formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_connector_ydb/dl_connector_ydb_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_constants/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_constants/LICENSE -------------------------------------------------------------------------------- /lib/dl_constants/dl_constants/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_constants/dl_constants_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_constants/dl_constants_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_constants/dl_constants_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_constants/dl_constants_tests/unit/test_stuff.py: -------------------------------------------------------------------------------- 1 | def test_stuff() -> None: 2 | assert True 3 | -------------------------------------------------------------------------------- /lib/dl_core/.coveragerc: -------------------------------------------------------------------------------- 1 | [coverage:run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /lib/dl_core/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core/.dockerignore -------------------------------------------------------------------------------- /lib/dl_core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core/LICENSE -------------------------------------------------------------------------------- /lib/dl_core/README.md: -------------------------------------------------------------------------------- 1 | # dl_core # 2 | 3 | Common libraries for BI backend components 4 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/aio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/aio/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/aio/web_app_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/aio/web_app_services/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/components/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connection_executors/adapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connection_executors/adapters/adapter_actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connection_executors/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connection_executors/remote_query_executor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connections_security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connectors/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connectors/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connectors/sql_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/connectors/ssl_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/prepared_components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/processing/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/processing/db_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processing/processing/source_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/data_processors/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core/dl_core/enums.py -------------------------------------------------------------------------------- /lib/dl_core/dl_core/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core/dl_core/exc.py -------------------------------------------------------------------------------- /lib/dl_core/dl_core/flask_utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Everything common for `flask`s. 3 | """ 4 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/flask_utils/sentry.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/lifecycle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/reporting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/us_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/us_manager/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/us_manager/mutation_cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/us_manager/schema_migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/us_manager/storage_schemas/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/us_manager/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core/dl_core/utils.py -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/db/compeng/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/db/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/data_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/data_source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/data_source/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/marshmallow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/dl_core_tests/unit/us_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_core_testing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_core_testing/LICENSE -------------------------------------------------------------------------------- /lib/dl_core_testing/dl_core_testing/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core_testing/dl_core_testing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_core_testing/dl_core_testing/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_dashsql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_dashsql/LICENSE -------------------------------------------------------------------------------- /lib/dl_dashsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_dashsql/README.md -------------------------------------------------------------------------------- /lib/dl_dashsql/dl_dashsql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_dashsql/dl_dashsql/formatting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_dashsql/dl_dashsql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_dashsql/dl_dashsql/typed_query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_dashsql/dl_dashsql/typed_query/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_db_testing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_db_testing/LICENSE -------------------------------------------------------------------------------- /lib/dl_db_testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_db_testing/README.md -------------------------------------------------------------------------------- /lib/dl_db_testing/dl_db_testing/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_db_testing/dl_db_testing/connectors/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_db_testing/dl_db_testing/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_db_testing/dl_db_testing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/README.md: -------------------------------------------------------------------------------- 1 | # dl_file_secure_reader_lib 2 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib/patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_secure_reader_lib/dl_file_secure_reader_lib_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/README.md: -------------------------------------------------------------------------------- 1 | # dl_file_uploader_api_lib 2 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib/aiohttp_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_api_lib/dl_file_uploader_api_lib_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/README.md: -------------------------------------------------------------------------------- 1 | # dl_file_uploader_lib 2 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib/redis_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib/s3_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib_tests/db/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_lib/dl_file_uploader_lib_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_task_interface/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_task_interface/dl_file_uploader_task_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_task_interface/dl_file_uploader_task_interface/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/README.md: -------------------------------------------------------------------------------- 1 | # dl_file_uploader_worker_lib 2 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_file_uploader_worker_lib/dl_file_uploader_worker_lib_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/.coveragerc: -------------------------------------------------------------------------------- 1 | [coverage:run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /lib/dl_formula/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_formula/LICENSE -------------------------------------------------------------------------------- /lib/dl_formula/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_formula/README.md -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/connectors/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/inspect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/inspect/registry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/mutation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/parser/antlr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/parser/antlr/gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/slicing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula/validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/inspect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/mutation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/slicing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula/dl_formula_tests/unit/validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_formula_ref/LICENSE -------------------------------------------------------------------------------- /lib/dl_formula_ref/README.md: -------------------------------------------------------------------------------- 1 | # Formula reference 2 | 3 | Package to generate BI docs source 4 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/babel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_formula_ref/babel.ini -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/plugins/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/plugins/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/registry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/rich_text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/db/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/unit/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/unit/rich_text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_ref/dl_formula_ref_tests/unit/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_testing/README.md: -------------------------------------------------------------------------------- 1 | # dl_formula_testing 2 | -------------------------------------------------------------------------------- /lib/dl_formula_testing/dl_formula_testing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_formula_testing/dl_formula_testing/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_httpx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_httpx/LICENSE -------------------------------------------------------------------------------- /lib/dl_httpx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_httpx/README.md -------------------------------------------------------------------------------- /lib/dl_httpx/dl_httpx/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_httpx/dl_httpx_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_httpx/dl_httpx_tests/unit/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_httpx/dl_httpx_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_httpx/dl_httpx_tests/unit/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_httpx/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_httpx/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_i18n/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_i18n/LICENSE -------------------------------------------------------------------------------- /lib/dl_i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_i18n/README.md -------------------------------------------------------------------------------- /lib/dl_i18n/dl_i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_i18n/dl_i18n/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_i18n/dl_i18n/exc.py -------------------------------------------------------------------------------- /lib/dl_i18n/dl_i18n/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_i18n/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_i18n/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_json/LICENSE -------------------------------------------------------------------------------- /lib/dl_json/README.md: -------------------------------------------------------------------------------- 1 | # dl_json 2 | 3 | JSON utilities using orjson. 4 | -------------------------------------------------------------------------------- /lib/dl_json/dl_json/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_json/dl_json/json.py -------------------------------------------------------------------------------- /lib/dl_json/dl_json/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_json/dl_json_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_json/dl_json_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_json/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_json/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_logging/LICENSE -------------------------------------------------------------------------------- /lib/dl_logging/README.md: -------------------------------------------------------------------------------- 1 | # dl-logging 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/dl_logging/dl_logging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_logging/dl_logging_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_logging/dl_logging_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_logging/dl_logging_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_maintenance/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_maintenance/LICENSE -------------------------------------------------------------------------------- /lib/dl_maintenance/dl_maintenance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_maintenance/dl_maintenance/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_maintenance/dl_maintenance/api/crawlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_maintenance/dl_maintenance/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_maintenance/dl_maintenance/core/crawlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_maintenance/dl_maintenance/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_model_tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_model_tools/LICENSE -------------------------------------------------------------------------------- /lib/dl_model_tools/dl_model_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_model_tools/dl_model_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_model_tools/dl_model_tools/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_model_tools/dl_model_tools_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_model_tools/dl_model_tools_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_model_tools/dl_model_tools_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_pivot/LICENSE -------------------------------------------------------------------------------- /lib/dl_pivot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_pivot/README.md -------------------------------------------------------------------------------- /lib/dl_pivot/dl_pivot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot/dl_pivot/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot/dl_pivot/empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot/dl_pivot/native/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot/dl_pivot/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot_pandas/dl_pivot_pandas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot_pandas/dl_pivot_pandas/pandas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pivot_pandas/dl_pivot_pandas/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pydantic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_pydantic/LICENSE -------------------------------------------------------------------------------- /lib/dl_pydantic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_pydantic/README.md -------------------------------------------------------------------------------- /lib/dl_pydantic/dl_pydantic/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pydantic/dl_pydantic_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pydantic/dl_pydantic_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_pydantic/dl_pydantic_tests/unit/jsonable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/base_specs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/compilation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/execution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/legend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/merging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/multi_query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/multi_query/mutators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/multi_query/splitters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/pagination/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/postprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/postprocessing/postprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing_tests/unit/merging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing_tests/unit/multi_query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_query_processing/dl_query_processing_tests/unit/postprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rate_limiter/dl_rate_limiter/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rate_limiter/dl_rate_limiter_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rate_limiter/dl_rate_limiter_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rate_limiter/dl_rate_limiter_tests/db/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rate_limiter/dl_rate_limiter_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_retrier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_retrier/LICENSE -------------------------------------------------------------------------------- /lib/dl_retrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_retrier/README.md -------------------------------------------------------------------------------- /lib/dl_retrier/dl_retrier/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_retrier/dl_retrier_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_rls/LICENSE -------------------------------------------------------------------------------- /lib/dl_rls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_rls/README.md -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_rls/dl_rls/exc.py -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls/rls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_rls/dl_rls/rls.py -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_rls/dl_rls/utils.py -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/dl_rls_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_rls/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_rls/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_s3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_s3/LICENSE -------------------------------------------------------------------------------- /lib/dl_s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_s3/README.md -------------------------------------------------------------------------------- /lib/dl_s3/dl_s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_s3/dl_s3/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_s3/dl_s3/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_s3/dl_s3/stream.py -------------------------------------------------------------------------------- /lib/dl_s3/dl_s3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_s3/dl_s3/utils.py -------------------------------------------------------------------------------- /lib/dl_s3/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_s3/pyproject.toml -------------------------------------------------------------------------------- /lib/dl_settings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_settings/LICENSE -------------------------------------------------------------------------------- /lib/dl_settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_settings/README.md -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/unit/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/unit/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/unit/validators/decode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/unit/validators/json/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_settings/dl_settings_tests/unit/validators/split/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_bitrix/README.md: -------------------------------------------------------------------------------- 1 | # dl_sqlalchemy_bitrix 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_bitrix/dl_sqlalchemy_bitrix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_bitrix/dl_sqlalchemy_bitrix/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_bitrix/dl_sqlalchemy_bitrix_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_bitrix/dl_sqlalchemy_bitrix_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_chyt/dl_sqlalchemy_chyt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_clickhouse/dl_sqlalchemy_clickhouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_clickhouse/dl_sqlalchemy_clickhouse/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_clickhouse/dl_sqlalchemy_clickhouse_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_clickhouse/dl_sqlalchemy_clickhouse_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_clickhouse/dl_sqlalchemy_clickhouse_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_common/dl_sqlalchemy_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_common/dl_sqlalchemy_common/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_common/dl_sqlalchemy_common_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_common/dl_sqlalchemy_common_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_common/dl_sqlalchemy_common_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_metrica_api/dl_sqlalchemy_metrica_api/api_info/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_metrica_api/dl_sqlalchemy_metrica_api/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_metrica_api/dl_sqlalchemy_metrica_api_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_metrica_api/dl_sqlalchemy_metrica_api_tests/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mssql/README.md: -------------------------------------------------------------------------------- 1 | # MSSQL connector for DataLens 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mssql/dl_sqlalchemy_mssql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mssql/dl_sqlalchemy_mssql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mssql/dl_sqlalchemy_mssql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mysql/dl_sqlalchemy_mysql/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mysql/dl_sqlalchemy_mysql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mysql/dl_sqlalchemy_mysql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_mysql/dl_sqlalchemy_mysql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_oracle/dl_sqlalchemy_oracle/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_oracle/dl_sqlalchemy_oracle/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_oracle/dl_sqlalchemy_oracle_tests/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_oracle/dl_sqlalchemy_oracle_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_postgres/dl_sqlalchemy_postgres/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_postgres/dl_sqlalchemy_postgres_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_postgres/dl_sqlalchemy_postgres_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_postgres/dl_sqlalchemy_postgres_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_promql/dl_sqlalchemy_promql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_promql/dl_sqlalchemy_promql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_promql/dl_sqlalchemy_promql_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_promql/dl_sqlalchemy_promql_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_promql/dl_sqlalchemy_promql_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_sqlalchemy_ydb/dl_sqlalchemy_ydb/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_task_processor/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_task_processor/dl_task_processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_task_processor/dl_task_processor/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_task_processor/dl_task_processor_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_task_processor/dl_task_processor_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_task_processor/dl_task_processor_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_temporal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_temporal/LICENSE -------------------------------------------------------------------------------- /lib/dl_temporal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_temporal/README.md -------------------------------------------------------------------------------- /lib/dl_temporal/dl_temporal/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_temporal/dl_temporal_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_temporal/dl_temporal_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_temporal/dl_temporal_tests/db/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_temporal/dl_temporal_tests/db/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_testing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_testing/LICENSE -------------------------------------------------------------------------------- /lib/dl_testing/dl_testing/files.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_testing/dl_testing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_testing/dl_testing/test_data/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /lib/dl_testing/dl_testing_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_testing/dl_testing_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_testing/dl_testing_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_type_transformer/dl_type_transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_type_transformer/dl_type_transformer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_type_transformer/dl_type_transformer_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_type_transformer/dl_type_transformer_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_type_transformer/dl_type_transformer_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_us_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_us_client/LICENSE -------------------------------------------------------------------------------- /lib/dl_us_client/README.md: -------------------------------------------------------------------------------- 1 | # dl_us_client 2 | -------------------------------------------------------------------------------- /lib/dl_us_client/dl_us_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_us_client/dl_us_client/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_utils/LICENSE -------------------------------------------------------------------------------- /lib/dl_utils/dl_utils/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_utils/dl_utils_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_utils/dl_utils_tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_utils/dl_utils_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_version/LICENSE -------------------------------------------------------------------------------- /lib/dl_version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_version/README.md -------------------------------------------------------------------------------- /lib/dl_version/dl_version/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.0" 2 | -------------------------------------------------------------------------------- /lib/dl_version/dl_version/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_zitadel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_zitadel/LICENSE -------------------------------------------------------------------------------- /lib/dl_zitadel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dl_zitadel/README.md -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel_tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel_tests/db/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | # TODO: add middleware tests 2 | -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dl_zitadel/dl_zitadel_tests/unit/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dynamic_enum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/dynamic_enum/LICENSE -------------------------------------------------------------------------------- /lib/dynamic_enum/README.md: -------------------------------------------------------------------------------- 1 | # dynamic_enum 2 | -------------------------------------------------------------------------------- /lib/dynamic_enum/dynamic_enum/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dynamic_enum/dynamic_enum_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dynamic_enum/dynamic_enum_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/redis-cache-lock/redis_cache_lock/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/redis-cache-lock/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/statcommons/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/statcommons/.pylintrc -------------------------------------------------------------------------------- /lib/statcommons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/lib/statcommons/LICENSE -------------------------------------------------------------------------------- /lib/statcommons/statcommons/unistat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metapkg/.dockerignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /metapkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/metapkg/LICENSE -------------------------------------------------------------------------------- /metapkg/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/metapkg/poetry.lock -------------------------------------------------------------------------------- /metapkg/poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/metapkg/poetry.toml -------------------------------------------------------------------------------- /metapkg/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/metapkg/pyproject.toml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /terrarium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/terrarium/README.md -------------------------------------------------------------------------------- /terrarium/bi_ci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/terrarium/bi_ci/LICENSE -------------------------------------------------------------------------------- /terrarium/bi_ci/bi_ci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/bi_ci/bi_ci_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_cli_tools/dl_cli_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_cli_tools/dl_cli_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_cli_tools/dl_cli_tools/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_cli_tools/dl_cli_tools_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_cli_tools/dl_cli_tools_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_cli_tools/dl_cli_tools_tests/unit/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_gitmanager/dl_gitmanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_gitmanager/dl_gitmanager/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_gitmanager/dl_gitmanager/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_gitmanager/dl_gitmanager_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_gitmanager/dl_gitmanager_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_repmanager/dl_repmanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_repmanager/dl_repmanager/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_repmanager/dl_repmanager_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrarium/dl_repmanager/dl_repmanager_tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/.env.sample: -------------------------------------------------------------------------------- 1 | VENV_PATH=./.venv 2 | PYTHON=/user/bin/env -------------------------------------------------------------------------------- /tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/tools/LICENSE -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/cookiecutter/templates/package/{{cookiecutter.package_slug}}/{{cookiecutter.package_slug}}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cookiecutter/templates/package/{{cookiecutter.package_slug}}/{{cookiecutter.package_slug}}/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cookiecutter/templates/package/{{cookiecutter.package_slug}}/{{cookiecutter.package_slug}}_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/tools/e2e/README.md -------------------------------------------------------------------------------- /tools/e2e/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/tools/e2e/Taskfile.yaml -------------------------------------------------------------------------------- /tools/e2e/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datalens-tech/datalens-backend/HEAD/tools/e2e/trivy.yaml --------------------------------------------------------------------------------