Skip to main content
Version: devel

sources.rest_api

Generic API Source

rest_api_source

def rest_api_source(config: RESTAPIConfig,
name: str = None,
section: str = None,
max_table_nesting: int = None,
root_key: bool = False,
schema: Schema = None,
schema_contract: TSchemaContract = None,
spec: Type[BaseConfiguration] = None) -> DltSource

[view_source]

Creates and configures a REST API source for data extraction.

Arguments:

  • config RESTAPIConfig - Configuration for the REST API source.
  • name str, optional - Name of the source.
  • section str, optional - Section of the configuration file.
  • max_table_nesting int, optional - Maximum depth of nested table above which the remaining nodes are loaded as structs or JSON.
  • root_key bool, optional - Enables merging on all resources by propagating root foreign key to child tables. This option is most useful if you plan to change write disposition of a resource to disable/enable merge. Defaults to False.
  • schema Schema, optional - An explicit Schema instance to be associated with the source. If not present, dlt creates a new Schema object with provided name. If such Schema already exists in the same folder as the module containing the decorated function, such schema will be loaded from file.
  • schema_contract TSchemaContract, optional - Schema contract settings that will be applied to this resource.
  • spec Type[BaseConfiguration], optional - A specification of configuration and secret values required by the source.

Returns:

  • DltSource - A configured dlt source.

Example:

pokemon_source = rest_api_source({

  • "client" - {
  • "base_url" - "https://pokeapi.co/api/v2/",
  • "paginator" - "json_link", },
  • "endpoints" - {
  • "pokemon" - {
  • "params" - {
  • "limit" - 100, # Default page size is 20 },
  • "resource" - {
  • "primary_key" - "id", } }, }, })

rest_api_resources

def rest_api_resources(config: RESTAPIConfig) -> List[DltResource]

[view_source]

Creates a list of resources from a REST API configuration.

Arguments:

  • config RESTAPIConfig - Configuration for the REST API source.

Returns:

  • List[DltResource] - List of dlt resources.

Example:

github_source = rest_api_resources({

  • "client" - {
  • "base_url" - "https://api.github.com/repos/dlt-hub/dlt/",
  • "auth" - {
  • "token" - dlt.secrets["token"], }, },
  • "resource_defaults" - {
  • "primary_key" - "id",
  • "write_disposition" - "merge",
  • "endpoint" - {
  • "params" - {
  • "per_page" - 100, }, }, },
  • "resources" - [ {
  • "name" - "issues",
  • "endpoint" - {
  • "path" - "issues",
  • "params" - {
  • "sort" - "updated",
  • "direction" - "desc",
  • "state" - "open",
  • "since" - {
  • "type" - "incremental",
  • "cursor_path" - "updated_at",
  • "initial_value" - "2024-01-25T11:21:28Z", }, }, }, }, {
  • "name" - "issue_comments",
  • "endpoint" - {
  • "path" - "issues/{issue_number}/comments",
  • "params" - {
  • "issue_number" - {
  • "type" - "resolve",
  • "resource" - "issues",
  • "field" - "number", } }, }, }, ], })

This demo works on codespaces. Codespaces is a development environment available for free to anyone with a Github account. You'll be asked to fork the demo repository and from there the README guides you with further steps.
The demo uses the Continue VSCode extension.

Off to codespaces!

DHelp

Ask a question

Welcome to "Codex Central", your next-gen help center, driven by OpenAI's GPT-4 model. It's more than just a forum or a FAQ hub – it's a dynamic knowledge base where coders can find AI-assisted solutions to their pressing problems. With GPT-4's powerful comprehension and predictive abilities, Codex Central provides instantaneous issue resolution, insightful debugging, and personalized guidance. Get your code running smoothly with the unparalleled support at Codex Central - coding help reimagined with AI prowess.