tap-google-play


Nametap-google-play JSON
Version 0.3.3 PyPI version JSON
download
home_page
Summary`tap-google-play` is a Singer tap for GooglePlay, built with the Meltano SDK for Singer Taps.
upload_time2024-02-19 16:38:46
maintainerEdgar Ramírez-Mondragón
docs_urlNone
authorhotglue
requires_python>=3.8
licenseApache-2.0
keywords elt googleplay meltano singer.io
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# tap-google-play

<div>
  <a href="https://pypi.org/p/tap-google-play/">
    <img alt="PyPI - Version" src="https://img.shields.io/pypi/v/tap-google-play">
  </a>
  <a href="https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-google-play/main">
    <img alt="pre-commit.ci status" src="https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-google-play/main.svg"/>
  </a>
  <a href="https://github.com/edgarrmondragon/tap-google-play/blob/main/LICENSE">
    <img alt="License" src="https://img.shields.io/github/license/edgarrmondragon/tap-google-play"/>
  </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-google-play/">
    <img alt="Python versions" src="https://img.shields.io/pypi/pyversions/tap-google-play"/>
  </a>
</div>

Singer tap for Google Play Reviews. Built with the [Meltano Singer SDK](https://sdk.meltano.com).

Based on [hotglue/tap-google-play](https://gitlab.com/hotglue/tap-google-play).

</div>

## Capabilities

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

## Settings

| Setting             | Required | Default | Description |
|:--------------------|:--------:|:-------:|:------------|
| app_id              | False    | None    | The app ID to extract reviews from. |
| app_id_list         | False    | None    | A list of app IDs to extract reviews from. |
| start_date          | False    | None    | The date to start extracting reviews 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. |
| batch_config        | False    | None    |             |

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

## Usage

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

### Executing the Tap Directly

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

## Developer Resources

### 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-google-play` CLI interface directly using `poetry run`:

```bash
poetry run tap-google-play --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._

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-google-play
meltano install
```

Now you can test and orchestrate using Meltano:

```bash
# Test invocation:
meltano invoke tap-google-play --version
# OR run a test `elt` pipeline:
meltano elt tap-google-play 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": "tap-google-play",
    "maintainer": "Edgar Ram\u00edrez-Mondrag\u00f3n",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "edgarrmondragon@hey.com",
    "keywords": "ELT,GooglePlay,Meltano,singer.io",
    "author": "hotglue",
    "author_email": "hello@hotglue.xyz",
    "download_url": "https://files.pythonhosted.org/packages/8e/64/ce559ea1cced4959cd4bb17957a294fabaeffda1af7760b18e81ab79b4af/tap_google_play-0.3.3.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# tap-google-play\n\n<div>\n  <a href=\"https://pypi.org/p/tap-google-play/\">\n    <img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/tap-google-play\">\n  </a>\n  <a href=\"https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-google-play/main\">\n    <img alt=\"pre-commit.ci status\" src=\"https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-google-play/main.svg\"/>\n  </a>\n  <a href=\"https://github.com/edgarrmondragon/tap-google-play/blob/main/LICENSE\">\n    <img alt=\"License\" src=\"https://img.shields.io/github/license/edgarrmondragon/tap-google-play\"/>\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-google-play/\">\n    <img alt=\"Python versions\" src=\"https://img.shields.io/pypi/pyversions/tap-google-play\"/>\n  </a>\n</div>\n\nSinger tap for Google Play Reviews. Built with the [Meltano Singer SDK](https://sdk.meltano.com).\n\nBased on [hotglue/tap-google-play](https://gitlab.com/hotglue/tap-google-play).\n\n</div>\n\n## Capabilities\n\n* `catalog`\n* `state`\n* `discover`\n* `about`\n* `stream-maps`\n* `schema-flattening`\n* `batch`\n\n## Settings\n\n| Setting             | Required | Default | Description |\n|:--------------------|:--------:|:-------:|:------------|\n| app_id              | False    | None    | The app ID to extract reviews from. |\n| app_id_list         | False    | None    | A list of app IDs to extract reviews from. |\n| start_date          | False    | None    | The date to start extracting reviews 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| batch_config        | False    | None    |             |\n\nA full list of supported settings and capabilities is available by running: `tap-google-play --about`\n\n## Usage\n\nYou can easily run `tap-google-play` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-google-play --version\ntap-google-play --help\ntap-google-play --config CONFIG --discover > ./catalog.json\n```\n\n## Developer Resources\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 then run:\n\n```bash\npoetry run pytest\n```\n\nYou can also test the `tap-google-play` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-google-play --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\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\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-google-play\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-google-play --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-google-play 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\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "`tap-google-play` is a Singer tap for GooglePlay, built with the Meltano SDK for Singer Taps.",
    "version": "0.3.3",
    "project_urls": null,
    "split_keywords": [
        "elt",
        "googleplay",
        "meltano",
        "singer.io"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cb82728778c5765807b66117f5be2e2dc0de6b0ceab130d6a12688a3f783430",
                "md5": "3aba61b01a3744e0abf16035dbf10ab7",
                "sha256": "b1ffde1ead610c8f60ccc7737fe938d2419b81a09d11781671ada5112fca81eb"
            },
            "downloads": -1,
            "filename": "tap_google_play-0.3.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3aba61b01a3744e0abf16035dbf10ab7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 9426,
            "upload_time": "2024-02-19T16:38:44",
            "upload_time_iso_8601": "2024-02-19T16:38:44.708096Z",
            "url": "https://files.pythonhosted.org/packages/1c/b8/2728778c5765807b66117f5be2e2dc0de6b0ceab130d6a12688a3f783430/tap_google_play-0.3.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e64ce559ea1cced4959cd4bb17957a294fabaeffda1af7760b18e81ab79b4af",
                "md5": "bcf0df38fc163c6dd0651692e0b427c2",
                "sha256": "aa997e7d2a512395a9f18932ad01cf1b772255b660fb015b3c4ebab38a6e7ac8"
            },
            "downloads": -1,
            "filename": "tap_google_play-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "bcf0df38fc163c6dd0651692e0b427c2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 8299,
            "upload_time": "2024-02-19T16:38:46",
            "upload_time_iso_8601": "2024-02-19T16:38:46.194787Z",
            "url": "https://files.pythonhosted.org/packages/8e/64/ce559ea1cced4959cd4bb17957a294fabaeffda1af7760b18e81ab79b4af/tap_google_play-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-19 16:38:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "tap-google-play"
}
        
Elapsed time: 0.28925s