tap-clerk


Nametap-clerk JSON
Version 0.0.2 PyPI version JSON
download
home_pageNone
Summary`tap-clerk` is a Singer tap for Clerk, built with the Meltano Singer SDK.
upload_time2024-05-01 20:36:23
maintainerNone
docs_urlNone
authorPanos Papageorgiou
requires_python<4.0,>=3.10
licenseApache-2.0
keywords elt clerk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # tap-clerk

`tap-clerk` is a Singer tap for Clerk.

Built with the [Meltano Tap SDK](https://sdk.meltano.com) for Singer Taps.

<!--

Developer TODO: Update the below as needed to correctly describe the install procedure. For instance, if you do not have a PyPi repo, or if you want users to directly install from your git repo, you can modify this step as appropriate.

## Installation

Install from PyPi:

```bash
pipx install tap-clerk
```

Install from GitHub:

```bash
pipx install git+https://github.com/ORG_NAME/tap-clerk.git@main
```

-->

## Configuration

### Accepted Config Options

<!--
Developer TODO: Provide a list of config options accepted by the tap.

This section can be created by copy-pasting the CLI output from:

```
tap-clerk --about --format=markdown
```
-->

A full list of supported settings and capabilities for this
tap is available by running:

```bash
tap-clerk --about
```

### Configure using environment variables

This Singer tap will automatically import any environment variables within the working directory's
`.env` if the `--config=ENV` is provided, such that config values will be considered if a matching
environment variable is set either in the terminal context or in the `.env` file.

### Source Authentication and Authorization

<!--
Developer TODO: If your tap requires special access on the source system, or any special authentication requirements, provide those here.
-->

## Usage

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

### Executing the Tap Directly

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

## Developer Resources

Follow these instructions to contribute to this project.

### Initialize your Development Environment

```bash
pipx install poetry
poetry install
```

### Create and Run Tests

Create tests within the `tests` subfolder and
  then run:

```bash
poetry run pytest
```

You can also test the `tap-clerk` CLI interface directly using `poetry run`:

```bash
poetry run tap-clerk --help
```

### 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._

<!--
Developer TODO:
Your project comes with a custom `meltano.yml` project file already created. Open the `meltano.yml` and follow any "TODO" items listed in
the file.
-->

Next, install Meltano (if you haven't already) and any needed plugins:

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

Now you can test and orchestrate using Meltano:

```bash
# Test invocation:
meltano invoke tap-clerk --version
# OR run a test `elt` pipeline:
meltano elt tap-clerk 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-clerk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": "ELT, Clerk",
    "author": "Panos Papageorgiou",
    "author_email": "panos.papageorgiou@keragon.com",
    "download_url": "https://files.pythonhosted.org/packages/98/77/eda74c845ca14a82123150148656564cb6cdb0d43c48ac80017f1794a05a/tap_clerk-0.0.2.tar.gz",
    "platform": null,
    "description": "# tap-clerk\n\n`tap-clerk` is a Singer tap for Clerk.\n\nBuilt with the [Meltano Tap SDK](https://sdk.meltano.com) for Singer Taps.\n\n<!--\n\nDeveloper TODO: Update the below as needed to correctly describe the install procedure. For instance, if you do not have a PyPi repo, or if you want users to directly install from your git repo, you can modify this step as appropriate.\n\n## Installation\n\nInstall from PyPi:\n\n```bash\npipx install tap-clerk\n```\n\nInstall from GitHub:\n\n```bash\npipx install git+https://github.com/ORG_NAME/tap-clerk.git@main\n```\n\n-->\n\n## Configuration\n\n### Accepted Config Options\n\n<!--\nDeveloper TODO: Provide a list of config options accepted by the tap.\n\nThis section can be created by copy-pasting the CLI output from:\n\n```\ntap-clerk --about --format=markdown\n```\n-->\n\nA full list of supported settings and capabilities for this\ntap is available by running:\n\n```bash\ntap-clerk --about\n```\n\n### Configure using environment variables\n\nThis Singer tap will automatically import any environment variables within the working directory's\n`.env` if the `--config=ENV` is provided, such that config values will be considered if a matching\nenvironment variable is set either in the terminal context or in the `.env` file.\n\n### Source Authentication and Authorization\n\n<!--\nDeveloper TODO: If your tap requires special access on the source system, or any special authentication requirements, provide those here.\n-->\n\n## Usage\n\nYou can easily run `tap-clerk` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-clerk --version\ntap-clerk --help\ntap-clerk --config CONFIG --discover > ./catalog.json\n```\n\n## Developer Resources\n\nFollow these instructions to contribute to this project.\n\n### Initialize your Development Environment\n\n```bash\npipx install poetry\npoetry install\n```\n\n### Create and Run Tests\n\nCreate tests within the `tests` subfolder and\n  then run:\n\n```bash\npoetry run pytest\n```\n\nYou can also test the `tap-clerk` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-clerk --help\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\n<!--\nDeveloper TODO:\nYour project comes with a custom `meltano.yml` project file already created. Open the `meltano.yml` and follow any \"TODO\" items listed in\nthe file.\n-->\n\nNext, install 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-clerk\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-clerk --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-clerk 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": "`tap-clerk` is a Singer tap for Clerk, built with the Meltano Singer SDK.",
    "version": "0.0.2",
    "project_urls": null,
    "split_keywords": [
        "elt",
        " clerk"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dfcd5f98c92da496f50f849f451493d30be8750bc9c79ed6019f4fb28ef6682",
                "md5": "b73dd0f06105c6f5ae1244d1a04ba381",
                "sha256": "e4baca6c841c4ed0bf1f4df2e7f007e2719f907fcd55207dbaca0cf10ef9ae10"
            },
            "downloads": -1,
            "filename": "tap_clerk-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b73dd0f06105c6f5ae1244d1a04ba381",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10",
            "size": 10900,
            "upload_time": "2024-05-01T20:36:21",
            "upload_time_iso_8601": "2024-05-01T20:36:21.926843Z",
            "url": "https://files.pythonhosted.org/packages/8d/fc/d5f98c92da496f50f849f451493d30be8750bc9c79ed6019f4fb28ef6682/tap_clerk-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9877eda74c845ca14a82123150148656564cb6cdb0d43c48ac80017f1794a05a",
                "md5": "46ce3754b715c7e7fc3f23157ed573be",
                "sha256": "0186d26127d3616837ece2bba5c4eb385c257282f189d88ade8153713840d0cd"
            },
            "downloads": -1,
            "filename": "tap_clerk-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "46ce3754b715c7e7fc3f23157ed573be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 10436,
            "upload_time": "2024-05-01T20:36:23",
            "upload_time_iso_8601": "2024-05-01T20:36:23.180221Z",
            "url": "https://files.pythonhosted.org/packages/98/77/eda74c845ca14a82123150148656564cb6cdb0d43c48ac80017f1794a05a/tap_clerk-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-01 20:36:23",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "tap-clerk"
}
        
Elapsed time: 0.27450s