skillfed

singer-sdk

A framework for building Singer taps and targets

singer-sdk v0.54.5 8.5M downloads/30d#1,615 on PyPI118
Permissive license Apache-2.0 Active released

What it is and what it does

Singer SDK is a framework for building data extraction (tap) and loading (target) connectors that comply with the Singer Spec, an open standard for ELT pipelines. It reduces boilerplate by providing base classes, schema handling, state management, and Singer protocol compliance out of the box. The SDK integrates with Meltano, a broader ELT platform, but can also be used standalone to build Singer-compliant connectors.

Developers use it to create custom data connectors without reimplementing Singer protocol logic. The framework handles common concerns like configuration validation (via jsonschema), incremental state tracking, and record serialization. It depends on a broad set of utilities: click for CLI, sqlalchemy for database operations, jsonschema for validation, requests for HTTP, and several others for data transformation and path handling.

Use it for:

  • Build a custom tap to extract data from a proprietary or unsupported data source into Singer format.
  • Create a target connector that loads Singer-formatted data into a custom data warehouse or application.
  • Extend an existing Meltano project with a connector for a data source not in the 300+ natively supported list.
  • Develop a reusable connector library that other teams can integrate into their ELT pipelines.
  • Implement incremental sync logic for a data source without writing Singer protocol handling from scratch.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Builds Singer-compliant data extraction taps and loading targets with less boilerplate code than writing them from scratch.

Yes. The package is actively maintained, has no known vulnerabilities, uses a permissive license, and supports current Python versions. Install it if you need to build Singer-compliant data connectors or integrate with Meltano pipelines. It is not necessary if you only use pre-built connectors or do not work with Singer-based ELT.

Install

singer-sdk on PyPI

pip

pip install singer-sdk

uv

uv add singer-sdk

poetry

poetry add singer-sdk

Installing singer-sdk

Before you install

Low install friction with a pure-wheel distribution. Active maintenance with a release 59 days ago and ongoing commits; the repository is not archived.

License in practice

Apache-2.0 permissive license allows commercial and private use with minimal restrictions.

Quickstart

pip install singer-sdk

from singer_sdk import Tap, Target
from singer_sdk.typing import PropertiesList

class MyTap(Tap):
    name = "my-tap"
    config_jsonschema = PropertiesList().to_dict()

if __name__ == "__main__":
    tap = MyTap()
    tap.run()

Requires Python 3.10 or later.

Verify before relying

  • Whether the 70% code reduction claim is typical across different connector types or specific to certain data sources.
  • Specific Singer Spec version compliance level and any known incompatibilities with existing Singer ecosystem tools.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 20 — backports-datetime-fromisoformat, click, fsspec, importlib-metadata, inflection, joblib, jsonpath-ng, jsonschema, packaging, python-backoff, python-dotenv, pyyaml, referencing, requests, simpleeval, simplejson, sqlalchemy, typing-extensions, universal-pathlib, urllib3
Maintenance actively maintained — 59 days since the last release
Last repo commit
First released
Downloads 8,511,986/month — #1,615 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: singer_sdk-0.54.5-py3-none-any.whl

Keywords: ELT, Meltano, Meltano SDK, Singer, Singer SDK

Intended Audience :: DevelopersOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: Implementation :: CPythonTopic :: Software Development :: Libraries :: Application FrameworksTyping :: Typed

Tags

singer tap target frameworkbuild data extractors loaderssinger spec compliant sdkelt pipeline connectorsmeltano tap target sdk
elt-frameworkdata-integrationsinger-spec

More Application Frameworks packages

fastapi

FastAPI is a Python web framework for building…

permissive · top 100 on PyPI

annotated-doc

Provides a way to document function parameters,…

permissive · top 100 on PyPI

textual

Textual is a Python framework for building…

permissive · top 100 on PyPI

typer

Typer builds command-line applications from…

permissive · top 1,000 on PyPI

mcp

Build and connect to Model Context Protocol…

permissive · top 1,000 on PyPI

Werkzeug

Werkzeug is a WSGI utility library providing…

permissive · top 1,000 on PyPI

meltano

Meltano is a declarative, code-first data…

permissive · top 15,000 on PyPI

meltanolabs-target-snowflake

A Singer target that loads data into Snowflake…

permissive · top 15,000 on PyPI

pipelinewise-singer-python

Writes data in Singer format from Python,…

permissive · top 5,000 on PyPI

acryl-datahub-airflow-plugin

Automatically captures pipeline lineage, task…

permissive · top 15,000 on PyPI

tap.py

Provides tools to parse, generate, and work…

permissive · top 15,000 on PyPI

airflow-provider-fivetran-async

Provides async operators and sensors for Apache…

permissive · top 15,000 on PyPI

fivetran-connector-sdk

Build and deploy custom Python data connectors…

permissive · top 15,000 on PyPI

dagster-embedded-elt

Provides ETL/ELT integration for Dagster,…

permissive · top 15,000 on PyPI

openlineage-airflow

Integrates Apache Airflow DAGs with OpenLineage…

permissive · top 5,000 on PyPI

dagster-sling

Integrates Sling ETL/ELT tasks into Dagster…

permissive · top 15,000 on PyPI