subzet-tap-coingecko


Namesubzet-tap-coingecko JSON
Version 0.0.1 PyPI version JSON
download
home_page
Summary`tap-coingecko` is a Singer tap for coingecko, built with the Meltano Singer SDK.
upload_time2023-04-10 20:01:02
maintainer
docs_urlNone
authorManu Ponsa
requires_python>=3.7.1,<3.12
licenseApache 2.0
keywords elt coingecko
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # tap-coingecko

`tap-coingecko` is a Singer tap for coingecko.

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-coingecko
```

Install from GitHub:

```bash
pipx install git+https://github.com/ORG_NAME/tap-coingecko.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-coingecko --about --format=markdown
```
-->

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

```bash
tap-coingecko --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-coingecko` by itself or in a pipeline using [Meltano](https://meltano.com/).

### Executing the Tap Directly

```bash
tap-coingecko --version
tap-coingecko --help
tap-coingecko --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 `tap_coingecko/tests` subfolder and
  then run:

```bash
poetry run pytest
```

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

```bash
poetry run tap-coingecko --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-coingecko
meltano install
```

Now you can test and orchestrate using Meltano:

```bash
# Test invocation:
meltano invoke tap-coingecko --version
# OR run a test `elt` pipeline:
meltano elt tap-coingecko 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": "",
    "name": "subzet-tap-coingecko",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.1,<3.12",
    "maintainer_email": "",
    "keywords": "ELT,coingecko",
    "author": "Manu Ponsa",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/aa/8f/22406c435f1edd8298f27b4eac597888555ec64305e968832c3b18feb604/subzet_tap_coingecko-0.0.1.tar.gz",
    "platform": null,
    "description": "# tap-coingecko\n\n`tap-coingecko` is a Singer tap for coingecko.\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-coingecko\n```\n\nInstall from GitHub:\n\n```bash\npipx install git+https://github.com/ORG_NAME/tap-coingecko.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-coingecko --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-coingecko --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-coingecko` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-coingecko --version\ntap-coingecko --help\ntap-coingecko --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 `tap_coingecko/tests` subfolder and\n  then run:\n\n```bash\npoetry run pytest\n```\n\nYou can also test the `tap-coingecko` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-coingecko --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-coingecko\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-coingecko --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-coingecko 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-coingecko` is a Singer tap for coingecko, built with the Meltano Singer SDK.",
    "version": "0.0.1",
    "split_keywords": [
        "elt",
        "coingecko"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0239f9ec4a25e3e28885dacd13fd736008c8b19e48d3a3fb9b96dc560c93a135",
                "md5": "bb04f972b8920530cc98142c04a739df",
                "sha256": "ad2f7840940be11509cbdd088bc081d49ef8326ba98ac5366c854c49ced42754"
            },
            "downloads": -1,
            "filename": "subzet_tap_coingecko-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bb04f972b8920530cc98142c04a739df",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7.1,<3.12",
            "size": 5752,
            "upload_time": "2023-04-10T20:01:00",
            "upload_time_iso_8601": "2023-04-10T20:01:00.472175Z",
            "url": "https://files.pythonhosted.org/packages/02/39/f9ec4a25e3e28885dacd13fd736008c8b19e48d3a3fb9b96dc560c93a135/subzet_tap_coingecko-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa8f22406c435f1edd8298f27b4eac597888555ec64305e968832c3b18feb604",
                "md5": "1a380c6daf999cd7a8f0362899a7804f",
                "sha256": "8a0b8bea75f8d65b4c1aac9222da0588bcfdf2baac831870aab883e502c6d191"
            },
            "downloads": -1,
            "filename": "subzet_tap_coingecko-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "1a380c6daf999cd7a8f0362899a7804f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.1,<3.12",
            "size": 4985,
            "upload_time": "2023-04-10T20:01:02",
            "upload_time_iso_8601": "2023-04-10T20:01:02.350649Z",
            "url": "https://files.pythonhosted.org/packages/aa/8f/22406c435f1edd8298f27b4eac597888555ec64305e968832c3b18feb604/subzet_tap_coingecko-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-10 20:01:02",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "subzet-tap-coingecko"
}
        
Elapsed time: 0.05191s