├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── 1_bug_report.yml │ ├── 2_extend_source.yml │ └── 3_source_request.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── get_changed_sources.yml │ ├── init.yml │ ├── lint.yml │ ├── test_destinations_slow.yml │ ├── test_on_local_destinations.yml │ ├── test_on_local_destinations_forks.yml │ └── test_transpiled_rules.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── ai ├── .rules │ ├── .message │ ├── build-rest-api.md │ ├── dlt.md │ ├── rest_api_extract_parameters.md │ ├── rest_api_pagination.md │ └── rules.json ├── README.md ├── amp │ ├── .message │ └── AGENT.md ├── claude │ ├── .message │ └── CLAUDE.md ├── cline │ ├── .clinerules │ │ ├── build-rest-api.md │ │ ├── dlt.md │ │ ├── rest_api_extract_parameters.md │ │ └── rest_api_pagination.md │ └── .message ├── codex │ ├── .message │ └── AGENT.md ├── cody │ ├── .message │ └── .sourcegraph │ │ ├── build-rest-api.rule.md │ │ ├── dlt.rule.md │ │ ├── rest_api_extract_parameters.rule.md │ │ └── rest_api_pagination.rule.md ├── continue │ ├── .continue │ │ └── rules │ │ │ ├── build-rest-api.md │ │ │ ├── dlt.md │ │ │ ├── rest_api_extract_parameters.md │ │ │ └── rest_api_pagination.md │ └── .message ├── copilot │ ├── .github │ │ └── instructions │ │ │ ├── build-rest-api.instructions.md │ │ │ ├── dlt.instructions.md │ │ │ ├── rest_api_extract_parameters.instructions.md │ │ │ └── rest_api_pagination.instructions.md │ └── .message ├── cursor │ ├── .cursor │ │ └── rules │ │ │ ├── build-rest-api.mdc │ │ │ ├── dlt.mdc │ │ │ ├── rest_api_extract_parameters.mdc │ │ │ └── rest_api_pagination.mdc │ ├── .cursorignore │ └── .message └── windsurf │ ├── .message │ └── .windsurf │ └── rules │ ├── build-rest-api.md │ ├── dlt.md │ ├── rest_api_extract_parameters.md │ └── rest_api_pagination.md ├── check-package.sh ├── check-requirements.py ├── docs └── DISTRIBUTION.md ├── init ├── .dlt │ ├── config.toml │ └── secrets.toml ├── .gitignore ├── README.md ├── __init__.py ├── pipeline.py └── pipeline_generic.py ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── sources ├── .dlt │ ├── config.toml │ └── example.secrets.toml ├── .gitignore ├── airtable │ ├── README.md │ ├── __init__.py │ └── requirements.txt ├── airtable_pipeline.py ├── asana_dlt │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── asana_dlt_pipeline.py ├── bing_webmaster │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── bing_webmaster_pipeline.py ├── chess │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── chess_pipeline.py ├── facebook_ads │ ├── README.md │ ├── __init__.py │ ├── exceptions.py │ ├── helpers.py │ ├── requirements.txt │ ├── settings.py │ └── utils.py ├── facebook_ads_pipeline.py ├── filesystem │ ├── __init__.py │ └── requirements.txt ├── filesystem_pipeline.py ├── freshdesk │ ├── README.md │ ├── __init__.py │ ├── freshdesk_client.py │ ├── requirements.txt │ └── settings.py ├── freshdesk_pipeline.py ├── github │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── queries.py │ ├── requirements.txt │ └── settings.py ├── github_pipeline.py ├── google_ads │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ └── data_processing.py │ ├── requirements.txt │ └── setup_script_gcp_oauth.py ├── google_ads_pipeline.py ├── google_analytics │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ └── data_processing.py │ ├── requirements.txt │ ├── settings.py │ └── setup_script_gcp_oauth.py ├── google_analytics_pipeline.py ├── google_sheets │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── api_calls.py │ │ └── data_processing.py │ ├── requirements.txt │ └── setup_script_gcp_oauth.py ├── google_sheets_pipeline.py ├── hubspot │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ ├── settings.py │ └── utils.py ├── hubspot_pipeline.py ├── inbox │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── inbox_pipeline.py ├── jira │ ├── README.md │ ├── __init__.py │ ├── requirements.txt │ └── settings.py ├── jira_pipeline.py ├── kafka │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── sources │ │ └── kafka │ │ └── __init__.py ├── kafka_pipeline.py ├── kinesis │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ └── requirements.txt ├── kinesis_pipeline.py ├── matomo │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── data_processing.py │ │ └── matomo_client.py │ ├── requirements.txt │ └── settings.py ├── matomo_pipeline.py ├── mongodb │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ └── requirements.txt ├── mongodb_pipeline.py ├── mux │ ├── README.md │ ├── __init__.py │ ├── requirements.txt │ └── settings.py ├── mux_pipeline.py ├── notion │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── client.py │ │ └── database.py │ ├── requirements.txt │ └── settings.py ├── notion_pipeline.py ├── personio │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── personio_pipeline.py ├── pg_replication │ ├── README.md │ ├── __init__.py │ ├── decoders.py │ ├── exceptions.py │ ├── helpers.py │ ├── requirements.txt │ └── schema_types.py ├── pg_replication_pipeline.py ├── pipedrive │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── custom_fields_munger.py │ │ └── pages.py │ ├── requirements.txt │ ├── settings.py │ └── typing.py ├── pipedrive_pipeline.py ├── pokemon │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── pokemon_pipeline.py ├── rest_api │ ├── __init__.py │ └── requirements.txt ├── rest_api_pipeline.py ├── salesforce │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── client.py │ │ └── records.py │ ├── requirements.txt │ └── settings.py ├── salesforce_pipeline.py ├── scraping │ ├── README.md │ ├── __init__.py │ ├── diagram.png │ ├── helpers.py │ ├── queue.py │ ├── requirements.txt │ ├── runner.py │ ├── settings.py │ └── types.py ├── scraping_pipeline.py ├── shopify_dlt │ ├── README.md │ ├── __init__.py │ ├── exceptions.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── shopify_dlt_pipeline.py ├── slack │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── slack_pipeline.py ├── sql_database │ ├── __init__.py │ └── requirements.txt ├── sql_database_pipeline.py ├── strapi │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── requirements.txt │ └── settings.py ├── strapi_pipeline.py ├── stripe_analytics │ ├── README.md │ ├── __init__.py │ ├── helpers.py │ ├── metrics.py │ ├── requirements.txt │ └── settings.py ├── stripe_analytics_pipeline.py ├── unstructured_data │ ├── README.md │ ├── __init__.py │ ├── async_index.py │ ├── google_drive │ │ ├── README.md │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── requirements.txt │ │ ├── settings.py │ │ └── setup_script_gcp_oauth.py │ ├── helpers.py │ ├── inbox │ │ ├── README.md │ │ ├── __init__.py │ │ ├── helpers.py │ │ └── settings.py │ ├── local_folder │ │ ├── README.md │ │ └── __init__.py │ ├── requirements.txt │ └── settings.py ├── unstructured_data_pipeline.py ├── workable │ ├── README.md │ ├── __init__.py │ ├── requirements.txt │ ├── settings.py │ └── workable_client.py ├── workable_pipeline.py ├── zendesk │ ├── README.md │ ├── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── api_helpers.py │ │ ├── credentials.py │ │ └── talk_api.py │ ├── requirements.txt │ └── settings.py └── zendesk_pipeline.py ├── tests ├── __init__.py ├── airtable │ ├── __init__.py │ └── test_airtable_source.py ├── asana_dlt │ ├── __init__.py │ └── test_asana_dlt_source.py ├── bing_webmaster │ ├── __init__.py │ ├── test_bing_webmaster_helpers.py │ └── test_bing_webmaster_source.py ├── chess │ ├── __init__.py │ └── test_chess_source.py ├── conftest.py ├── diff_pipelines.py ├── facebook_ads │ ├── __init__.py │ └── test_facebook_ads_source.py ├── filesystem │ └── __init__.py ├── freshdesk │ ├── __init__.py │ └── test_freshdesk_source.py ├── github │ ├── __init__.py │ └── test_github_source.py ├── google_ads │ ├── __init__.py │ └── test_google_ads_pipeline.py ├── google_analytics │ ├── __init__.py │ └── test_google_analytics_source.py ├── google_sheets │ ├── __init__.py │ ├── test_data_processing.py │ └── test_google_sheets_source.py ├── hubspot │ ├── __init__.py │ ├── mock_data.py │ └── test_hubspot_source.py ├── inbox │ ├── __init__.py │ └── test_inbox.py ├── jira │ ├── __init__.py │ └── test_jira_source.py ├── kafka │ ├── __init__.py │ └── test_kafka.py ├── kinesis │ ├── __init__.py │ └── test_kinesis.py ├── matomo │ ├── __init__.py │ └── test_matomo_source.py ├── mongodb │ ├── __init__.py │ └── test_mongodb_source.py ├── mux │ ├── __init__.py │ └── test_mux_source.py ├── notion │ ├── __init__.py │ ├── test_notion_client.py │ ├── test_notion_database.py │ ├── test_notion_source.py │ └── test_pages_resource.py ├── personio │ ├── __init__.py │ ├── test_personio_client.py │ └── test_personio_source.py ├── pg_replication │ ├── __init__.py │ ├── cases.py │ ├── conftest.py │ ├── test_pg_replication.py │ └── utils.py ├── pipedrive │ ├── __init__.py │ ├── recents_response_with_null.json │ └── test_pipedrive_source.py ├── pokemon │ ├── __init__.py │ └── test_pokemon_source.py ├── postgres │ ├── README.md │ ├── docker-compose.yml │ ├── postgres.env │ └── postgres │ │ ├── 01_init.sql │ │ └── Dockerfile ├── rest_api │ └── __init__.py ├── salesforce │ ├── __init__.py │ └── test_salesforce_source.py ├── scraping │ ├── __init__.py │ ├── test_scraping_source.py │ └── utils.py ├── shopify_dlt │ ├── __init__.py │ └── test_shopify_source.py ├── slack │ ├── __init__.py │ └── test_slack_source.py ├── sql_database │ └── __init__.py ├── strapi │ ├── __init__.py │ └── test_strapi_source.py ├── stripe_analytics │ ├── __init__.py │ ├── conftest.py │ └── test_stripe_source.py ├── test_dlt_ai.py ├── test_dlt_init.py ├── unstructured_data │ ├── __init__.py │ ├── conftest.py │ ├── skipped_test_unstructured_data_source.py │ └── test_data │ │ ├── invoice_1.pdf │ │ ├── invoice_2.txt │ │ └── invoice_3.jpg ├── utils.py ├── workable │ ├── __init__.py │ └── test_workable_source.py └── zendesk │ ├── __init__.py │ └── test_zendesk_source.py ├── tools ├── __init__.py ├── dependabot_lock │ └── requirements.txt └── new_source.py ├── tox.ini └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_extend_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/ISSUE_TEMPLATE/2_extend_source.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_source_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/ISSUE_TEMPLATE/3_source_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/get_changed_sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/get_changed_sources.yml -------------------------------------------------------------------------------- /.github/workflows/init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/init.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test_destinations_slow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/test_destinations_slow.yml -------------------------------------------------------------------------------- /.github/workflows/test_on_local_destinations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/test_on_local_destinations.yml -------------------------------------------------------------------------------- /.github/workflows/test_on_local_destinations_forks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/test_on_local_destinations_forks.yml -------------------------------------------------------------------------------- /.github/workflows/test_transpiled_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.github/workflows/test_transpiled_rules.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/README.md -------------------------------------------------------------------------------- /ai/.rules/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/.rules/.message -------------------------------------------------------------------------------- /ai/.rules/build-rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/.rules/build-rest-api.md -------------------------------------------------------------------------------- /ai/.rules/dlt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/.rules/dlt.md -------------------------------------------------------------------------------- /ai/.rules/rest_api_extract_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/.rules/rest_api_extract_parameters.md -------------------------------------------------------------------------------- /ai/.rules/rest_api_pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/.rules/rest_api_pagination.md -------------------------------------------------------------------------------- /ai/.rules/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/.rules/rules.json -------------------------------------------------------------------------------- /ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/README.md -------------------------------------------------------------------------------- /ai/amp/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/amp/.message -------------------------------------------------------------------------------- /ai/amp/AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/amp/AGENT.md -------------------------------------------------------------------------------- /ai/claude/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/claude/.message -------------------------------------------------------------------------------- /ai/claude/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/claude/CLAUDE.md -------------------------------------------------------------------------------- /ai/cline/.clinerules/build-rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cline/.clinerules/build-rest-api.md -------------------------------------------------------------------------------- /ai/cline/.clinerules/dlt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cline/.clinerules/dlt.md -------------------------------------------------------------------------------- /ai/cline/.clinerules/rest_api_extract_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cline/.clinerules/rest_api_extract_parameters.md -------------------------------------------------------------------------------- /ai/cline/.clinerules/rest_api_pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cline/.clinerules/rest_api_pagination.md -------------------------------------------------------------------------------- /ai/cline/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cline/.message -------------------------------------------------------------------------------- /ai/codex/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/codex/.message -------------------------------------------------------------------------------- /ai/codex/AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/codex/AGENT.md -------------------------------------------------------------------------------- /ai/cody/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cody/.message -------------------------------------------------------------------------------- /ai/cody/.sourcegraph/build-rest-api.rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cody/.sourcegraph/build-rest-api.rule.md -------------------------------------------------------------------------------- /ai/cody/.sourcegraph/dlt.rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cody/.sourcegraph/dlt.rule.md -------------------------------------------------------------------------------- /ai/cody/.sourcegraph/rest_api_extract_parameters.rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cody/.sourcegraph/rest_api_extract_parameters.rule.md -------------------------------------------------------------------------------- /ai/cody/.sourcegraph/rest_api_pagination.rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cody/.sourcegraph/rest_api_pagination.rule.md -------------------------------------------------------------------------------- /ai/continue/.continue/rules/build-rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/continue/.continue/rules/build-rest-api.md -------------------------------------------------------------------------------- /ai/continue/.continue/rules/dlt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/continue/.continue/rules/dlt.md -------------------------------------------------------------------------------- /ai/continue/.continue/rules/rest_api_extract_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/continue/.continue/rules/rest_api_extract_parameters.md -------------------------------------------------------------------------------- /ai/continue/.continue/rules/rest_api_pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/continue/.continue/rules/rest_api_pagination.md -------------------------------------------------------------------------------- /ai/continue/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/continue/.message -------------------------------------------------------------------------------- /ai/copilot/.github/instructions/build-rest-api.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/copilot/.github/instructions/build-rest-api.instructions.md -------------------------------------------------------------------------------- /ai/copilot/.github/instructions/dlt.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/copilot/.github/instructions/dlt.instructions.md -------------------------------------------------------------------------------- /ai/copilot/.github/instructions/rest_api_extract_parameters.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/copilot/.github/instructions/rest_api_extract_parameters.instructions.md -------------------------------------------------------------------------------- /ai/copilot/.github/instructions/rest_api_pagination.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/copilot/.github/instructions/rest_api_pagination.instructions.md -------------------------------------------------------------------------------- /ai/copilot/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/copilot/.message -------------------------------------------------------------------------------- /ai/cursor/.cursor/rules/build-rest-api.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cursor/.cursor/rules/build-rest-api.mdc -------------------------------------------------------------------------------- /ai/cursor/.cursor/rules/dlt.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cursor/.cursor/rules/dlt.mdc -------------------------------------------------------------------------------- /ai/cursor/.cursor/rules/rest_api_extract_parameters.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cursor/.cursor/rules/rest_api_extract_parameters.mdc -------------------------------------------------------------------------------- /ai/cursor/.cursor/rules/rest_api_pagination.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cursor/.cursor/rules/rest_api_pagination.mdc -------------------------------------------------------------------------------- /ai/cursor/.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cursor/.cursorignore -------------------------------------------------------------------------------- /ai/cursor/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/cursor/.message -------------------------------------------------------------------------------- /ai/windsurf/.message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/windsurf/.message -------------------------------------------------------------------------------- /ai/windsurf/.windsurf/rules/build-rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/windsurf/.windsurf/rules/build-rest-api.md -------------------------------------------------------------------------------- /ai/windsurf/.windsurf/rules/dlt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/windsurf/.windsurf/rules/dlt.md -------------------------------------------------------------------------------- /ai/windsurf/.windsurf/rules/rest_api_extract_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/windsurf/.windsurf/rules/rest_api_extract_parameters.md -------------------------------------------------------------------------------- /ai/windsurf/.windsurf/rules/rest_api_pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/ai/windsurf/.windsurf/rules/rest_api_pagination.md -------------------------------------------------------------------------------- /check-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/check-package.sh -------------------------------------------------------------------------------- /check-requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/check-requirements.py -------------------------------------------------------------------------------- /docs/DISTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/docs/DISTRIBUTION.md -------------------------------------------------------------------------------- /init/.dlt/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/.dlt/config.toml -------------------------------------------------------------------------------- /init/.dlt/secrets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/.dlt/secrets.toml -------------------------------------------------------------------------------- /init/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/.gitignore -------------------------------------------------------------------------------- /init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/README.md -------------------------------------------------------------------------------- /init/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/__init__.py -------------------------------------------------------------------------------- /init/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/pipeline.py -------------------------------------------------------------------------------- /init/pipeline_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/init/pipeline_generic.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/pytest.ini -------------------------------------------------------------------------------- /sources/.dlt/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/.dlt/config.toml -------------------------------------------------------------------------------- /sources/.dlt/example.secrets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/.dlt/example.secrets.toml -------------------------------------------------------------------------------- /sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/.gitignore -------------------------------------------------------------------------------- /sources/airtable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/airtable/README.md -------------------------------------------------------------------------------- /sources/airtable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/airtable/__init__.py -------------------------------------------------------------------------------- /sources/airtable/requirements.txt: -------------------------------------------------------------------------------- 1 | pyairtable~=2.1 2 | dlt>=0.3.25 -------------------------------------------------------------------------------- /sources/airtable_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/airtable_pipeline.py -------------------------------------------------------------------------------- /sources/asana_dlt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/asana_dlt/README.md -------------------------------------------------------------------------------- /sources/asana_dlt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/asana_dlt/__init__.py -------------------------------------------------------------------------------- /sources/asana_dlt/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/asana_dlt/helpers.py -------------------------------------------------------------------------------- /sources/asana_dlt/requirements.txt: -------------------------------------------------------------------------------- 1 | asana<5.0.0 2 | dlt>=0.5.1 3 | -------------------------------------------------------------------------------- /sources/asana_dlt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/asana_dlt/settings.py -------------------------------------------------------------------------------- /sources/asana_dlt_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/asana_dlt_pipeline.py -------------------------------------------------------------------------------- /sources/bing_webmaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/bing_webmaster/README.md -------------------------------------------------------------------------------- /sources/bing_webmaster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/bing_webmaster/__init__.py -------------------------------------------------------------------------------- /sources/bing_webmaster/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/bing_webmaster/helpers.py -------------------------------------------------------------------------------- /sources/bing_webmaster/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/bing_webmaster/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/bing_webmaster/settings.py -------------------------------------------------------------------------------- /sources/bing_webmaster_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/bing_webmaster_pipeline.py -------------------------------------------------------------------------------- /sources/chess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/chess/README.md -------------------------------------------------------------------------------- /sources/chess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/chess/__init__.py -------------------------------------------------------------------------------- /sources/chess/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/chess/helpers.py -------------------------------------------------------------------------------- /sources/chess/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/chess/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/chess/settings.py -------------------------------------------------------------------------------- /sources/chess_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/chess_pipeline.py -------------------------------------------------------------------------------- /sources/facebook_ads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads/README.md -------------------------------------------------------------------------------- /sources/facebook_ads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads/__init__.py -------------------------------------------------------------------------------- /sources/facebook_ads/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads/exceptions.py -------------------------------------------------------------------------------- /sources/facebook_ads/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads/helpers.py -------------------------------------------------------------------------------- /sources/facebook_ads/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | facebook-business>=16.0.2 3 | -------------------------------------------------------------------------------- /sources/facebook_ads/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads/settings.py -------------------------------------------------------------------------------- /sources/facebook_ads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads/utils.py -------------------------------------------------------------------------------- /sources/facebook_ads_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/facebook_ads_pipeline.py -------------------------------------------------------------------------------- /sources/filesystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/filesystem/__init__.py -------------------------------------------------------------------------------- /sources/filesystem/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=1.0.0 2 | -------------------------------------------------------------------------------- /sources/filesystem_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/filesystem_pipeline.py -------------------------------------------------------------------------------- /sources/freshdesk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/freshdesk/README.md -------------------------------------------------------------------------------- /sources/freshdesk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/freshdesk/__init__.py -------------------------------------------------------------------------------- /sources/freshdesk/freshdesk_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/freshdesk/freshdesk_client.py -------------------------------------------------------------------------------- /sources/freshdesk/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 -------------------------------------------------------------------------------- /sources/freshdesk/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/freshdesk/settings.py -------------------------------------------------------------------------------- /sources/freshdesk_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/freshdesk_pipeline.py -------------------------------------------------------------------------------- /sources/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/github/README.md -------------------------------------------------------------------------------- /sources/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/github/__init__.py -------------------------------------------------------------------------------- /sources/github/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/github/helpers.py -------------------------------------------------------------------------------- /sources/github/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/github/queries.py -------------------------------------------------------------------------------- /sources/github/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/github/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/github/settings.py -------------------------------------------------------------------------------- /sources/github_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/github_pipeline.py -------------------------------------------------------------------------------- /sources/google_ads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_ads/README.md -------------------------------------------------------------------------------- /sources/google_ads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_ads/__init__.py -------------------------------------------------------------------------------- /sources/google_ads/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/google_ads/helpers/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_ads/helpers/data_processing.py -------------------------------------------------------------------------------- /sources/google_ads/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_ads/requirements.txt -------------------------------------------------------------------------------- /sources/google_ads/setup_script_gcp_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_ads/setup_script_gcp_oauth.py -------------------------------------------------------------------------------- /sources/google_ads_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_ads_pipeline.py -------------------------------------------------------------------------------- /sources/google_analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics/README.md -------------------------------------------------------------------------------- /sources/google_analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics/__init__.py -------------------------------------------------------------------------------- /sources/google_analytics/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics/helpers/__init__.py -------------------------------------------------------------------------------- /sources/google_analytics/helpers/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics/helpers/data_processing.py -------------------------------------------------------------------------------- /sources/google_analytics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics/requirements.txt -------------------------------------------------------------------------------- /sources/google_analytics/settings.py: -------------------------------------------------------------------------------- 1 | """Google analytics source settings and constants""" 2 | 3 | START_DATE = "2015-08-14" 4 | -------------------------------------------------------------------------------- /sources/google_analytics/setup_script_gcp_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics/setup_script_gcp_oauth.py -------------------------------------------------------------------------------- /sources/google_analytics_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_analytics_pipeline.py -------------------------------------------------------------------------------- /sources/google_sheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_sheets/README.md -------------------------------------------------------------------------------- /sources/google_sheets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_sheets/__init__.py -------------------------------------------------------------------------------- /sources/google_sheets/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | """Google Sheets source helpers""" 2 | -------------------------------------------------------------------------------- /sources/google_sheets/helpers/api_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_sheets/helpers/api_calls.py -------------------------------------------------------------------------------- /sources/google_sheets/helpers/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_sheets/helpers/data_processing.py -------------------------------------------------------------------------------- /sources/google_sheets/requirements.txt: -------------------------------------------------------------------------------- 1 | google-api-python-client 2 | dlt>=0.5.1 3 | -------------------------------------------------------------------------------- /sources/google_sheets/setup_script_gcp_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_sheets/setup_script_gcp_oauth.py -------------------------------------------------------------------------------- /sources/google_sheets_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/google_sheets_pipeline.py -------------------------------------------------------------------------------- /sources/hubspot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/hubspot/README.md -------------------------------------------------------------------------------- /sources/hubspot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/hubspot/__init__.py -------------------------------------------------------------------------------- /sources/hubspot/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/hubspot/helpers.py -------------------------------------------------------------------------------- /sources/hubspot/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/hubspot/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/hubspot/settings.py -------------------------------------------------------------------------------- /sources/hubspot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/hubspot/utils.py -------------------------------------------------------------------------------- /sources/hubspot_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/hubspot_pipeline.py -------------------------------------------------------------------------------- /sources/inbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/inbox/README.md -------------------------------------------------------------------------------- /sources/inbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/inbox/__init__.py -------------------------------------------------------------------------------- /sources/inbox/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/inbox/helpers.py -------------------------------------------------------------------------------- /sources/inbox/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/inbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/inbox/settings.py -------------------------------------------------------------------------------- /sources/inbox_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/inbox_pipeline.py -------------------------------------------------------------------------------- /sources/jira/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/jira/README.md -------------------------------------------------------------------------------- /sources/jira/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/jira/__init__.py -------------------------------------------------------------------------------- /sources/jira/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/jira/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/jira/settings.py -------------------------------------------------------------------------------- /sources/jira_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/jira_pipeline.py -------------------------------------------------------------------------------- /sources/kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kafka/README.md -------------------------------------------------------------------------------- /sources/kafka/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kafka/__init__.py -------------------------------------------------------------------------------- /sources/kafka/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kafka/helpers.py -------------------------------------------------------------------------------- /sources/kafka/requirements.txt: -------------------------------------------------------------------------------- 1 | confluent-kafka>=2.3.0 2 | dlt>=0.5.1 3 | -------------------------------------------------------------------------------- /sources/kafka/sources/kafka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/kafka_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kafka_pipeline.py -------------------------------------------------------------------------------- /sources/kinesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kinesis/README.md -------------------------------------------------------------------------------- /sources/kinesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kinesis/__init__.py -------------------------------------------------------------------------------- /sources/kinesis/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kinesis/helpers.py -------------------------------------------------------------------------------- /sources/kinesis/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | botocore>=1.28 3 | -------------------------------------------------------------------------------- /sources/kinesis_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/kinesis_pipeline.py -------------------------------------------------------------------------------- /sources/matomo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/matomo/README.md -------------------------------------------------------------------------------- /sources/matomo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/matomo/__init__.py -------------------------------------------------------------------------------- /sources/matomo/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | """Matomo source helpers""" 2 | -------------------------------------------------------------------------------- /sources/matomo/helpers/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/matomo/helpers/data_processing.py -------------------------------------------------------------------------------- /sources/matomo/helpers/matomo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/matomo/helpers/matomo_client.py -------------------------------------------------------------------------------- /sources/matomo/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt >= 0.5.1 -------------------------------------------------------------------------------- /sources/matomo/settings.py: -------------------------------------------------------------------------------- 1 | """Matomo source settings and constants""" 2 | 3 | DEFAULT_START_DATE = "2000-01-01" 4 | -------------------------------------------------------------------------------- /sources/matomo_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/matomo_pipeline.py -------------------------------------------------------------------------------- /sources/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mongodb/README.md -------------------------------------------------------------------------------- /sources/mongodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mongodb/__init__.py -------------------------------------------------------------------------------- /sources/mongodb/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mongodb/helpers.py -------------------------------------------------------------------------------- /sources/mongodb/requirements.txt: -------------------------------------------------------------------------------- 1 | pymongo>=3 2 | dlt>=0.5.1 3 | -------------------------------------------------------------------------------- /sources/mongodb_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mongodb_pipeline.py -------------------------------------------------------------------------------- /sources/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mux/README.md -------------------------------------------------------------------------------- /sources/mux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mux/__init__.py -------------------------------------------------------------------------------- /sources/mux/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/mux/settings.py: -------------------------------------------------------------------------------- 1 | """Mux source settings and constants""" 2 | 3 | API_BASE_URL = "https://api.mux.com" 4 | DEFAULT_LIMIT = 100 5 | -------------------------------------------------------------------------------- /sources/mux_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/mux_pipeline.py -------------------------------------------------------------------------------- /sources/notion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/notion/README.md -------------------------------------------------------------------------------- /sources/notion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/notion/__init__.py -------------------------------------------------------------------------------- /sources/notion/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/notion/helpers/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/notion/helpers/client.py -------------------------------------------------------------------------------- /sources/notion/helpers/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/notion/helpers/database.py -------------------------------------------------------------------------------- /sources/notion/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/notion/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/notion/settings.py -------------------------------------------------------------------------------- /sources/notion_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/notion_pipeline.py -------------------------------------------------------------------------------- /sources/personio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/personio/README.md -------------------------------------------------------------------------------- /sources/personio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/personio/__init__.py -------------------------------------------------------------------------------- /sources/personio/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/personio/helpers.py -------------------------------------------------------------------------------- /sources/personio/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/personio/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/personio/settings.py -------------------------------------------------------------------------------- /sources/personio_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/personio_pipeline.py -------------------------------------------------------------------------------- /sources/pg_replication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication/README.md -------------------------------------------------------------------------------- /sources/pg_replication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication/__init__.py -------------------------------------------------------------------------------- /sources/pg_replication/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication/decoders.py -------------------------------------------------------------------------------- /sources/pg_replication/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication/exceptions.py -------------------------------------------------------------------------------- /sources/pg_replication/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication/helpers.py -------------------------------------------------------------------------------- /sources/pg_replication/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=1.0.0 2 | psycopg2-binary>=2.9.9 -------------------------------------------------------------------------------- /sources/pg_replication/schema_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication/schema_types.py -------------------------------------------------------------------------------- /sources/pg_replication_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pg_replication_pipeline.py -------------------------------------------------------------------------------- /sources/pipedrive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/README.md -------------------------------------------------------------------------------- /sources/pipedrive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/__init__.py -------------------------------------------------------------------------------- /sources/pipedrive/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/helpers/__init__.py -------------------------------------------------------------------------------- /sources/pipedrive/helpers/custom_fields_munger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/helpers/custom_fields_munger.py -------------------------------------------------------------------------------- /sources/pipedrive/helpers/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/helpers/pages.py -------------------------------------------------------------------------------- /sources/pipedrive/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=1.0.0 2 | -------------------------------------------------------------------------------- /sources/pipedrive/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/settings.py -------------------------------------------------------------------------------- /sources/pipedrive/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive/typing.py -------------------------------------------------------------------------------- /sources/pipedrive_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pipedrive_pipeline.py -------------------------------------------------------------------------------- /sources/pokemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pokemon/__init__.py -------------------------------------------------------------------------------- /sources/pokemon/helpers.py: -------------------------------------------------------------------------------- 1 | """Pokemon pipeline helpers""" 2 | -------------------------------------------------------------------------------- /sources/pokemon/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/pokemon/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pokemon/settings.py -------------------------------------------------------------------------------- /sources/pokemon_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/pokemon_pipeline.py -------------------------------------------------------------------------------- /sources/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/rest_api/__init__.py -------------------------------------------------------------------------------- /sources/rest_api/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=1.0.0 2 | -------------------------------------------------------------------------------- /sources/rest_api_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/rest_api_pipeline.py -------------------------------------------------------------------------------- /sources/salesforce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/salesforce/README.md -------------------------------------------------------------------------------- /sources/salesforce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/salesforce/__init__.py -------------------------------------------------------------------------------- /sources/salesforce/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/salesforce/helpers/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/salesforce/helpers/client.py -------------------------------------------------------------------------------- /sources/salesforce/helpers/records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/salesforce/helpers/records.py -------------------------------------------------------------------------------- /sources/salesforce/requirements.txt: -------------------------------------------------------------------------------- 1 | simple-salesforce>=1.12.4 2 | dlt>=0.5.1 3 | -------------------------------------------------------------------------------- /sources/salesforce/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/salesforce/settings.py -------------------------------------------------------------------------------- /sources/salesforce_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/salesforce_pipeline.py -------------------------------------------------------------------------------- /sources/scraping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/README.md -------------------------------------------------------------------------------- /sources/scraping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/__init__.py -------------------------------------------------------------------------------- /sources/scraping/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/diagram.png -------------------------------------------------------------------------------- /sources/scraping/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/helpers.py -------------------------------------------------------------------------------- /sources/scraping/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/queue.py -------------------------------------------------------------------------------- /sources/scraping/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | scrapy>=2.11.0 -------------------------------------------------------------------------------- /sources/scraping/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/runner.py -------------------------------------------------------------------------------- /sources/scraping/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/settings.py -------------------------------------------------------------------------------- /sources/scraping/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping/types.py -------------------------------------------------------------------------------- /sources/scraping_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/scraping_pipeline.py -------------------------------------------------------------------------------- /sources/shopify_dlt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/shopify_dlt/README.md -------------------------------------------------------------------------------- /sources/shopify_dlt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/shopify_dlt/__init__.py -------------------------------------------------------------------------------- /sources/shopify_dlt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/shopify_dlt/exceptions.py -------------------------------------------------------------------------------- /sources/shopify_dlt/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/shopify_dlt/helpers.py -------------------------------------------------------------------------------- /sources/shopify_dlt/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/shopify_dlt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/shopify_dlt/settings.py -------------------------------------------------------------------------------- /sources/shopify_dlt_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/shopify_dlt_pipeline.py -------------------------------------------------------------------------------- /sources/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/slack/README.md -------------------------------------------------------------------------------- /sources/slack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/slack/__init__.py -------------------------------------------------------------------------------- /sources/slack/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/slack/helpers.py -------------------------------------------------------------------------------- /sources/slack/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/slack/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/slack/settings.py -------------------------------------------------------------------------------- /sources/slack_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/slack_pipeline.py -------------------------------------------------------------------------------- /sources/sql_database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/sql_database/__init__.py -------------------------------------------------------------------------------- /sources/sql_database/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=1.0.0 2 | -------------------------------------------------------------------------------- /sources/sql_database_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/sql_database_pipeline.py -------------------------------------------------------------------------------- /sources/strapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/strapi/README.md -------------------------------------------------------------------------------- /sources/strapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/strapi/__init__.py -------------------------------------------------------------------------------- /sources/strapi/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/strapi/helpers.py -------------------------------------------------------------------------------- /sources/strapi/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/strapi/settings.py: -------------------------------------------------------------------------------- 1 | """Strapi source settings and constants""" 2 | -------------------------------------------------------------------------------- /sources/strapi_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/strapi_pipeline.py -------------------------------------------------------------------------------- /sources/stripe_analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics/README.md -------------------------------------------------------------------------------- /sources/stripe_analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics/__init__.py -------------------------------------------------------------------------------- /sources/stripe_analytics/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics/helpers.py -------------------------------------------------------------------------------- /sources/stripe_analytics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics/metrics.py -------------------------------------------------------------------------------- /sources/stripe_analytics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics/requirements.txt -------------------------------------------------------------------------------- /sources/stripe_analytics/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics/settings.py -------------------------------------------------------------------------------- /sources/stripe_analytics_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/stripe_analytics_pipeline.py -------------------------------------------------------------------------------- /sources/unstructured_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/README.md -------------------------------------------------------------------------------- /sources/unstructured_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/__init__.py -------------------------------------------------------------------------------- /sources/unstructured_data/async_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/async_index.py -------------------------------------------------------------------------------- /sources/unstructured_data/google_drive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/google_drive/README.md -------------------------------------------------------------------------------- /sources/unstructured_data/google_drive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/google_drive/__init__.py -------------------------------------------------------------------------------- /sources/unstructured_data/google_drive/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/google_drive/helpers.py -------------------------------------------------------------------------------- /sources/unstructured_data/google_drive/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/google_drive/requirements.txt -------------------------------------------------------------------------------- /sources/unstructured_data/google_drive/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/google_drive/settings.py -------------------------------------------------------------------------------- /sources/unstructured_data/google_drive/setup_script_gcp_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/google_drive/setup_script_gcp_oauth.py -------------------------------------------------------------------------------- /sources/unstructured_data/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/helpers.py -------------------------------------------------------------------------------- /sources/unstructured_data/inbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/inbox/README.md -------------------------------------------------------------------------------- /sources/unstructured_data/inbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/inbox/__init__.py -------------------------------------------------------------------------------- /sources/unstructured_data/inbox/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/inbox/helpers.py -------------------------------------------------------------------------------- /sources/unstructured_data/inbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/inbox/settings.py -------------------------------------------------------------------------------- /sources/unstructured_data/local_folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/local_folder/README.md -------------------------------------------------------------------------------- /sources/unstructured_data/local_folder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/local_folder/__init__.py -------------------------------------------------------------------------------- /sources/unstructured_data/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/requirements.txt -------------------------------------------------------------------------------- /sources/unstructured_data/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data/settings.py -------------------------------------------------------------------------------- /sources/unstructured_data_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/unstructured_data_pipeline.py -------------------------------------------------------------------------------- /sources/workable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/workable/README.md -------------------------------------------------------------------------------- /sources/workable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/workable/__init__.py -------------------------------------------------------------------------------- /sources/workable/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=0.5.1 2 | -------------------------------------------------------------------------------- /sources/workable/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/workable/settings.py -------------------------------------------------------------------------------- /sources/workable/workable_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/workable/workable_client.py -------------------------------------------------------------------------------- /sources/workable_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/workable_pipeline.py -------------------------------------------------------------------------------- /sources/zendesk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/README.md -------------------------------------------------------------------------------- /sources/zendesk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/__init__.py -------------------------------------------------------------------------------- /sources/zendesk/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/helpers/__init__.py -------------------------------------------------------------------------------- /sources/zendesk/helpers/api_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/helpers/api_helpers.py -------------------------------------------------------------------------------- /sources/zendesk/helpers/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/helpers/credentials.py -------------------------------------------------------------------------------- /sources/zendesk/helpers/talk_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/helpers/talk_api.py -------------------------------------------------------------------------------- /sources/zendesk/requirements.txt: -------------------------------------------------------------------------------- 1 | dlt>=1.0.0 2 | -------------------------------------------------------------------------------- /sources/zendesk/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk/settings.py -------------------------------------------------------------------------------- /sources/zendesk_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/sources/zendesk_pipeline.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/airtable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/airtable/test_airtable_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/airtable/test_airtable_source.py -------------------------------------------------------------------------------- /tests/asana_dlt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/asana_dlt/test_asana_dlt_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/asana_dlt/test_asana_dlt_source.py -------------------------------------------------------------------------------- /tests/bing_webmaster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bing_webmaster/test_bing_webmaster_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/bing_webmaster/test_bing_webmaster_helpers.py -------------------------------------------------------------------------------- /tests/bing_webmaster/test_bing_webmaster_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/bing_webmaster/test_bing_webmaster_source.py -------------------------------------------------------------------------------- /tests/chess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/chess/test_chess_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/chess/test_chess_source.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/diff_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/diff_pipelines.py -------------------------------------------------------------------------------- /tests/facebook_ads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/facebook_ads/test_facebook_ads_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/facebook_ads/test_facebook_ads_source.py -------------------------------------------------------------------------------- /tests/filesystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/filesystem/__init__.py -------------------------------------------------------------------------------- /tests/freshdesk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/freshdesk/test_freshdesk_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/freshdesk/test_freshdesk_source.py -------------------------------------------------------------------------------- /tests/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/github/test_github_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/github/test_github_source.py -------------------------------------------------------------------------------- /tests/google_ads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/google_ads/test_google_ads_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/google_ads/test_google_ads_pipeline.py -------------------------------------------------------------------------------- /tests/google_analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/google_analytics/test_google_analytics_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/google_analytics/test_google_analytics_source.py -------------------------------------------------------------------------------- /tests/google_sheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/google_sheets/test_data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/google_sheets/test_data_processing.py -------------------------------------------------------------------------------- /tests/google_sheets/test_google_sheets_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/google_sheets/test_google_sheets_source.py -------------------------------------------------------------------------------- /tests/hubspot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hubspot/mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/hubspot/mock_data.py -------------------------------------------------------------------------------- /tests/hubspot/test_hubspot_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/hubspot/test_hubspot_source.py -------------------------------------------------------------------------------- /tests/inbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/inbox/test_inbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/inbox/test_inbox.py -------------------------------------------------------------------------------- /tests/jira/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/jira/test_jira_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/jira/test_jira_source.py -------------------------------------------------------------------------------- /tests/kafka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/kafka/test_kafka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/kafka/test_kafka.py -------------------------------------------------------------------------------- /tests/kinesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/kinesis/test_kinesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/kinesis/test_kinesis.py -------------------------------------------------------------------------------- /tests/matomo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/matomo/test_matomo_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/matomo/test_matomo_source.py -------------------------------------------------------------------------------- /tests/mongodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mongodb/test_mongodb_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/mongodb/test_mongodb_source.py -------------------------------------------------------------------------------- /tests/mux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mux/test_mux_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/mux/test_mux_source.py -------------------------------------------------------------------------------- /tests/notion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/notion/test_notion_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/notion/test_notion_client.py -------------------------------------------------------------------------------- /tests/notion/test_notion_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/notion/test_notion_database.py -------------------------------------------------------------------------------- /tests/notion/test_notion_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/notion/test_notion_source.py -------------------------------------------------------------------------------- /tests/notion/test_pages_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/notion/test_pages_resource.py -------------------------------------------------------------------------------- /tests/personio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/personio/test_personio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/personio/test_personio_client.py -------------------------------------------------------------------------------- /tests/personio/test_personio_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/personio/test_personio_source.py -------------------------------------------------------------------------------- /tests/pg_replication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pg_replication/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pg_replication/cases.py -------------------------------------------------------------------------------- /tests/pg_replication/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pg_replication/conftest.py -------------------------------------------------------------------------------- /tests/pg_replication/test_pg_replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pg_replication/test_pg_replication.py -------------------------------------------------------------------------------- /tests/pg_replication/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pg_replication/utils.py -------------------------------------------------------------------------------- /tests/pipedrive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pipedrive/recents_response_with_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pipedrive/recents_response_with_null.json -------------------------------------------------------------------------------- /tests/pipedrive/test_pipedrive_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pipedrive/test_pipedrive_source.py -------------------------------------------------------------------------------- /tests/pokemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pokemon/test_pokemon_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/pokemon/test_pokemon_source.py -------------------------------------------------------------------------------- /tests/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/postgres/README.md -------------------------------------------------------------------------------- /tests/postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/postgres/docker-compose.yml -------------------------------------------------------------------------------- /tests/postgres/postgres.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/postgres/postgres.env -------------------------------------------------------------------------------- /tests/postgres/postgres/01_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/postgres/postgres/01_init.sql -------------------------------------------------------------------------------- /tests/postgres/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:14 2 | COPY 01_init.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /tests/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/rest_api/__init__.py -------------------------------------------------------------------------------- /tests/salesforce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/salesforce/test_salesforce_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/salesforce/test_salesforce_source.py -------------------------------------------------------------------------------- /tests/scraping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scraping/test_scraping_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/scraping/test_scraping_source.py -------------------------------------------------------------------------------- /tests/scraping/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/scraping/utils.py -------------------------------------------------------------------------------- /tests/shopify_dlt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shopify_dlt/test_shopify_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/shopify_dlt/test_shopify_source.py -------------------------------------------------------------------------------- /tests/slack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/slack/test_slack_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/slack/test_slack_source.py -------------------------------------------------------------------------------- /tests/sql_database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/sql_database/__init__.py -------------------------------------------------------------------------------- /tests/strapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/strapi/test_strapi_source.py: -------------------------------------------------------------------------------- 1 | def test_pipeline() -> None: 2 | assert True 3 | -------------------------------------------------------------------------------- /tests/stripe_analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/stripe_analytics/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/stripe_analytics/conftest.py -------------------------------------------------------------------------------- /tests/stripe_analytics/test_stripe_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/stripe_analytics/test_stripe_source.py -------------------------------------------------------------------------------- /tests/test_dlt_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/test_dlt_ai.py -------------------------------------------------------------------------------- /tests/test_dlt_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/test_dlt_init.py -------------------------------------------------------------------------------- /tests/unstructured_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unstructured_data/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/unstructured_data/conftest.py -------------------------------------------------------------------------------- /tests/unstructured_data/skipped_test_unstructured_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/unstructured_data/skipped_test_unstructured_data_source.py -------------------------------------------------------------------------------- /tests/unstructured_data/test_data/invoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/unstructured_data/test_data/invoice_1.pdf -------------------------------------------------------------------------------- /tests/unstructured_data/test_data/invoice_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/unstructured_data/test_data/invoice_2.txt -------------------------------------------------------------------------------- /tests/unstructured_data/test_data/invoice_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/unstructured_data/test_data/invoice_3.jpg -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/workable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/workable/test_workable_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/workable/test_workable_source.py -------------------------------------------------------------------------------- /tests/zendesk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/zendesk/test_zendesk_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tests/zendesk/test_zendesk_source.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dependabot_lock/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tools/dependabot_lock/requirements.txt -------------------------------------------------------------------------------- /tools/new_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tools/new_source.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlt-hub/verified-sources/HEAD/uv.lock --------------------------------------------------------------------------------