<div align="center">
# `tap-geekbot`
<div>
<a href="https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-betterstack/main">
<img alt="pre-commit.ci status" src="https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-betterstack/main.svg"/>
</a>
<a href="https://github.com/edgarrmondragon/tap-betterstack/blob/main/LICENSE">
<img alt="License" src="https://img.shields.io/github/license/edgarrmondragon/tap-betterstack"/>
</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-geekbot/">
<img alt="Python versions" src="https://img.shields.io/pypi/pyversions/tap-geekbot"/>
</a>
</div>
Singer tap for [Geekbot](https://geekbot.com/).
Built with the [Meltano Tap SDK](https://sdk.meltano.com) for Singer Taps.
</div>
## Capabilities
* `catalog`
* `state`
* `discover`
* `about`
* `stream-maps`
## Settings
- [ ] `Developer TODO:` Declare tap settings here.
A full list of supported settings and capabilities is available by running: `tap-geekbot --about`
### 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-geekbot` by itself or in a pipeline using [Meltano](https://meltano.com/).
### Executing the Tap Directly
```bash
tap-geekbot --version
tap-geekbot --help
tap-geekbot --config CONFIG --discover > ./catalog.json
```
## Developer Resources
- [ ] `Developer TODO:` As a first step, scan the entire project for the text "`TODO:`" and complete any recommended steps, deleting the "TODO" references once completed.
### 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-geekbot` CLI interface directly using `poetry run`:
```bash
poetry run tap-geekbot --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-geekbot
meltano install
```
Now you can test and orchestrate using Meltano:
```bash
# Test invocation:
meltano invoke tap-geekbot --version
# OR run a test `elt` pipeline:
meltano elt tap-geekbot 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": "https://github.com/edgarrmondragon/tap-geekbot",
"name": "tap-geekbot",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "ELT, singer.io, Geekbot",
"author": "Edgar Ram\u00edrez-Mondrag\u00f3n",
"author_email": "edgarrm358@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/b0/62/7e667c98774230632a4d5f6cf1c5996aa4f5d44f88bed440be8fc103c1de/tap_geekbot-0.4.0.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n\n# `tap-geekbot`\n\n<div>\n <a href=\"https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-betterstack/main\">\n <img alt=\"pre-commit.ci status\" src=\"https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-betterstack/main.svg\"/>\n </a>\n <a href=\"https://github.com/edgarrmondragon/tap-betterstack/blob/main/LICENSE\">\n <img alt=\"License\" src=\"https://img.shields.io/github/license/edgarrmondragon/tap-betterstack\"/>\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-geekbot/\">\n <img alt=\"Python versions\" src=\"https://img.shields.io/pypi/pyversions/tap-geekbot\"/>\n </a>\n</div>\n\nSinger tap for [Geekbot](https://geekbot.com/).\n\nBuilt with the [Meltano Tap SDK](https://sdk.meltano.com) for Singer Taps.\n\n</div>\n\n## Capabilities\n\n* `catalog`\n* `state`\n* `discover`\n* `about`\n* `stream-maps`\n\n## Settings\n\n- [ ] `Developer TODO:` Declare tap settings here.\n\nA full list of supported settings and capabilities is available by running: `tap-geekbot --about`\n\n### Source Authentication and Authorization\n\n- [ ] `Developer TODO:` If your tap requires special access on the source system, or any special authentication requirements, provide those here.\n\n## Usage\n\nYou can easily run `tap-geekbot` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-geekbot --version\ntap-geekbot --help\ntap-geekbot --config CONFIG --discover > ./catalog.json\n```\n\n## Developer Resources\n\n- [ ] `Developer TODO:` As a first step, scan the entire project for the text \"`TODO:`\" and complete any recommended steps, deleting the \"TODO\" references once completed.\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-geekbot` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-geekbot --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-geekbot\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-geekbot --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-geekbot 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": "Singer tap for Geekbot, built with the Meltano SDK for Singer Taps.",
"version": "0.4.0",
"project_urls": {
"Documentation": "https://github.com/edgarrmondragon/tap-geekbot#readme",
"Homepage": "https://github.com/edgarrmondragon/tap-geekbot",
"Repository": "https://github.com/edgarrmondragon/tap-geekbot"
},
"split_keywords": [
"elt",
" singer.io",
" geekbot"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a05eb46c1d32317b078c0c0d561d344c895ed0f71e56c5aab6764c587b8e0993",
"md5": "2f1ecf398dfa0df0f4d9083f46c60e05",
"sha256": "b58b686e5cb379f2b4330710fc602f46e500ffd034aa0f5b4025f8ca3357f0f1"
},
"downloads": -1,
"filename": "tap_geekbot-0.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2f1ecf398dfa0df0f4d9083f46c60e05",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 9780,
"upload_time": "2024-11-19T18:55:06",
"upload_time_iso_8601": "2024-11-19T18:55:06.943955Z",
"url": "https://files.pythonhosted.org/packages/a0/5e/b46c1d32317b078c0c0d561d344c895ed0f71e56c5aab6764c587b8e0993/tap_geekbot-0.4.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0627e667c98774230632a4d5f6cf1c5996aa4f5d44f88bed440be8fc103c1de",
"md5": "86313ca34cb62c7a066f7e95b605f1c8",
"sha256": "37678e312512a340697d63902be7e46f1b1e66a5ec688fc15c904231b5782a75"
},
"downloads": -1,
"filename": "tap_geekbot-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "86313ca34cb62c7a066f7e95b605f1c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 8683,
"upload_time": "2024-11-19T18:55:08",
"upload_time_iso_8601": "2024-11-19T18:55:08.184802Z",
"url": "https://files.pythonhosted.org/packages/b0/62/7e667c98774230632a4d5f6cf1c5996aa4f5d44f88bed440be8fc103c1de/tap_geekbot-0.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-19 18:55:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "edgarrmondragon",
"github_project": "tap-geekbot",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "tap-geekbot"
}