tap-pipedream


Nametap-pipedream JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
SummarySinger tap for Pipedream, built with the Meltano SDK for Singer Taps.
upload_time2024-11-19 18:16:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseApache-2.0
keywords elt pipedream singer.io
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# tap-pipedream

<div>
  <a href="https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-pipedream/main">
    <img alt="pre-commit.ci status" src="https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-pipedream/main.svg"/>
  </a>
  <a href="https://github.com/edgarrmondragon/tap-pipedream/blob/main/LICENSE">
    <img alt="License" src="https://img.shields.io/github/license/edgarrmondragon/tap-pipedream"/>
  </a>
  <a href="https://github.com/astral-sh/ruff">
    <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json" alt="Ruff" style="max-width:100%;">
  </a>
  <a href="https://pypi.org/p/tap-pipedream/">
    <img alt="Python versions" src="https://img.shields.io/pypi/pyversions/tap-pipedream"/>
  </a>
</div>

Singer tap for [Pipedream](https://pipedream.com/). Built with the [Meltano Singer SDK](https://sdk.meltano.com).

</div>

## Capabilities

* `catalog`
* `state`
* `discover`
* `about`
* `stream-maps`
* `schema-flattening`

## Settings

| Setting             | Required | Default | Description |
|:--------------------|:--------:|:-------:|:------------|
| token               | True     | None    | API Token for Pipedream |
| start_date          | False    | None    | Earliest timestamp to get data from |
| stream_maps         | False    | None    | Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html). |
| stream_map_config   | False    | None    | User-defined config values to be used within map expressions. |
| flattening_enabled  | False    | None    | 'True' to enable schema flattening and automatically expand nested properties. |
| flattening_max_depth| False    | None    | The max depth to flatten schemas. |

A full list of supported settings and capabilities is available by running: `tap-pipedream --about`

### Source Authentication and Authorization

To generate an API key, follow the instructions [in the docs](https://pipedream.com/docs/api/auth/#pipedream-api-key).

## Usage

You can easily run `tap-pipedream` by itself or in a pipeline using [Meltano](https://meltano.com/).

### Executing the Tap Directly

```bash
tap-pipedream --version
tap-pipedream --help
tap-pipedream --config CONFIG --discover > ./catalog.json
```

## Developer Resources

### Initialize your Development Environment

```bash
pipx install hatch
```

### Create and Run Tests

Run integration tests:

```bash
hatch run test:integration
```

You can also test the `tap-pipedream` CLI interface directly:

```bash
hatch run sync:console -- --about --format=json
```

### Testing with [Meltano](https://www.meltano.com)

_**Note:** This tap will work in any Singer environment and does not require Meltano.
Examples here are for convenience and to streamline end-to-end orchestration scenarios._

Install Meltano (if you haven't already) and any needed plugins:

```bash
# Install meltano
pipx install meltano
# Initialize meltano within this directory
cd tap-pipedream
meltano install
```

Now you can test and orchestrate using Meltano:

```bash
# Test invocation:
meltano invoke tap-pipedream --version
# OR run a test `elt` pipeline:
meltano elt tap-pipedream target-jsonl
```

### SDK Dev Guide

See the [dev guide](https://sdk.meltano.com/en/latest/dev_guide.html) for more instructions on how to use the SDK to
develop your own taps and targets.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "tap-pipedream",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Edgar Ram\u00edrez-Mondrag\u00f3n <edgarrm358@gmail.com>",
    "keywords": "ELT, Pipedream, singer.io",
    "author": null,
    "author_email": "Edgar Ram\u00edrez-Mondrag\u00f3n <edgarrm358@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/cf/6f/e3c12012d50b61eee753816dc0dff1a4d638fe177c30398d2823ad440bfa/tap_pipedream-0.4.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# tap-pipedream\n\n<div>\n  <a href=\"https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-pipedream/main\">\n    <img alt=\"pre-commit.ci status\" src=\"https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-pipedream/main.svg\"/>\n  </a>\n  <a href=\"https://github.com/edgarrmondragon/tap-pipedream/blob/main/LICENSE\">\n    <img alt=\"License\" src=\"https://img.shields.io/github/license/edgarrmondragon/tap-pipedream\"/>\n  </a>\n  <a href=\"https://github.com/astral-sh/ruff\">\n    <img src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json\" alt=\"Ruff\" style=\"max-width:100%;\">\n  </a>\n  <a href=\"https://pypi.org/p/tap-pipedream/\">\n    <img alt=\"Python versions\" src=\"https://img.shields.io/pypi/pyversions/tap-pipedream\"/>\n  </a>\n</div>\n\nSinger tap for [Pipedream](https://pipedream.com/). Built with the [Meltano Singer SDK](https://sdk.meltano.com).\n\n</div>\n\n## Capabilities\n\n* `catalog`\n* `state`\n* `discover`\n* `about`\n* `stream-maps`\n* `schema-flattening`\n\n## Settings\n\n| Setting             | Required | Default | Description |\n|:--------------------|:--------:|:-------:|:------------|\n| token               | True     | None    | API Token for Pipedream |\n| start_date          | False    | None    | Earliest timestamp to get data from |\n| stream_maps         | False    | None    | Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html). |\n| stream_map_config   | False    | None    | User-defined config values to be used within map expressions. |\n| flattening_enabled  | False    | None    | 'True' to enable schema flattening and automatically expand nested properties. |\n| flattening_max_depth| False    | None    | The max depth to flatten schemas. |\n\nA full list of supported settings and capabilities is available by running: `tap-pipedream --about`\n\n### Source Authentication and Authorization\n\nTo generate an API key, follow the instructions [in the docs](https://pipedream.com/docs/api/auth/#pipedream-api-key).\n\n## Usage\n\nYou can easily run `tap-pipedream` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-pipedream --version\ntap-pipedream --help\ntap-pipedream --config CONFIG --discover > ./catalog.json\n```\n\n## Developer Resources\n\n### Initialize your Development Environment\n\n```bash\npipx install hatch\n```\n\n### Create and Run Tests\n\nRun integration tests:\n\n```bash\nhatch run test:integration\n```\n\nYou can also test the `tap-pipedream` CLI interface directly:\n\n```bash\nhatch run sync:console -- --about --format=json\n```\n\n### Testing with [Meltano](https://www.meltano.com)\n\n_**Note:** This tap will work in any Singer environment and does not require Meltano.\nExamples here are for convenience and to streamline end-to-end orchestration scenarios._\n\nInstall Meltano (if you haven't already) and any needed plugins:\n\n```bash\n# Install meltano\npipx install meltano\n# Initialize meltano within this directory\ncd tap-pipedream\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-pipedream --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-pipedream target-jsonl\n```\n\n### SDK Dev Guide\n\nSee the [dev guide](https://sdk.meltano.com/en/latest/dev_guide.html) for more instructions on how to use the SDK to\ndevelop your own taps and targets.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Singer tap for Pipedream, built with the Meltano SDK for Singer Taps.",
    "version": "0.4.0",
    "project_urls": {
        "Documentation": "https://github.com/edgarrmondragon/tap-pipedream#readme",
        "Homepage": "https://github.com/edgarrmondragon/tap-pipedream",
        "Repository": "https://github.com/edgarrmondragon/tap-pipedream"
    },
    "split_keywords": [
        "elt",
        " pipedream",
        " singer.io"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cafb9806634ee2af2c6c2282c1d63bdddeeaf95eb5fe819d73341b2c532e014",
                "md5": "9774d1f44589261e4667780f785401f9",
                "sha256": "eb20d5038a02c03f8298cea185baa0a369eb75a46413077146d3b4938d3866cf"
            },
            "downloads": -1,
            "filename": "tap_pipedream-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9774d1f44589261e4667780f785401f9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 10547,
            "upload_time": "2024-11-19T18:16:08",
            "upload_time_iso_8601": "2024-11-19T18:16:08.779656Z",
            "url": "https://files.pythonhosted.org/packages/2c/af/b9806634ee2af2c6c2282c1d63bdddeeaf95eb5fe819d73341b2c532e014/tap_pipedream-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf6fe3c12012d50b61eee753816dc0dff1a4d638fe177c30398d2823ad440bfa",
                "md5": "25cee93e2b5e67ebdf50c92f8abe8e78",
                "sha256": "e91c2a73f782372c43a9590a883302f1559b3f9cf5cf61ead329117d10dabfe5"
            },
            "downloads": -1,
            "filename": "tap_pipedream-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "25cee93e2b5e67ebdf50c92f8abe8e78",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 13381,
            "upload_time": "2024-11-19T18:16:11",
            "upload_time_iso_8601": "2024-11-19T18:16:11.352897Z",
            "url": "https://files.pythonhosted.org/packages/cf/6f/e3c12012d50b61eee753816dc0dff1a4d638fe177c30398d2823ad440bfa/tap_pipedream-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-19 18:16:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "edgarrmondragon",
    "github_project": "tap-pipedream#readme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tap-pipedream"
}
        
Elapsed time: 1.12577s