singer-sdk
A framework for building Singer taps and targets
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-sdkuv
uv add singer-sdkpoetry
poetry add singer-sdkInstalling 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
Tags
More Application Frameworks packages
FastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
textualTextual is a Python framework for building…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
mcpBuild and connect to Model Context Protocol…
permissive · top 1,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
meltanoMeltano is a declarative, code-first data…
permissive · top 15,000 on PyPI
meltanolabs-target-snowflakeA Singer target that loads data into Snowflake…
permissive · top 15,000 on PyPI
pipelinewise-singer-pythonWrites data in Singer format from Python,…
permissive · top 5,000 on PyPI
acryl-datahub-airflow-pluginAutomatically captures pipeline lineage, task…
permissive · top 15,000 on PyPI
tap.pyProvides tools to parse, generate, and work…
permissive · top 15,000 on PyPI
airflow-provider-fivetran-asyncProvides async operators and sensors for Apache…
permissive · top 15,000 on PyPI
fivetran-connector-sdkBuild and deploy custom Python data connectors…
permissive · top 15,000 on PyPI
dagster-embedded-eltProvides ETL/ELT integration for Dagster,…
permissive · top 15,000 on PyPI
openlineage-airflowIntegrates Apache Airflow DAGs with OpenLineage…
permissive · top 5,000 on PyPI
dagster-slingIntegrates Sling ETL/ELT tasks into Dagster…
permissive · top 15,000 on PyPI