<div align="center">
# tap-socketdev
<div>
<a href="https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-socketdev/main">
<img alt="pre-commit.ci status" src="https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-socketdev/main.svg"/>
</a>
<a href="https://github.com/edgarrmondragon/tap-socketdev/blob/main/LICENSE">
<img alt="License" src="https://img.shields.io/github/license/edgarrmondragon/tap-socketdev"/>
</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-socketdev/">
<img alt="Python versions" src="https://img.shields.io/pypi/pyversions/tap-socketdev"/>
</a>
</div>
Singer tap for [socket.dev](https://socket.dev).
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-socketdev --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-socketdev` by itself or in a pipeline using [Meltano](https://meltano.com/).
### Executing the Tap Directly
```bash
tap-socketdev --version
tap-socketdev --help
tap-socketdev --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-socketdev` CLI interface directly using `poetry run`:
```bash
poetry run tap-socketdev --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-socketdev
meltano install
```
Now you can test and orchestrate using Meltano:
```bash
# Test invocation:
meltano invoke tap-socketdev --version
# OR run a test `elt` pipeline:
meltano elt tap-socketdev 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-socketdev",
"name": "tap-socketdev",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "ELT, singer.io, Socket",
"author": "Edgar Ram\u00edrez-Mondrag\u00f3n",
"author_email": "edgarrm358@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/76/d6/13cebcc19786cbcc221aad31899a2f8a009686687316cb375682804adaee/tap_socketdev-0.3.0.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n\n# tap-socketdev\n\n<div>\n <a href=\"https://results.pre-commit.ci/latest/github/edgarrmondragon/tap-socketdev/main\">\n <img alt=\"pre-commit.ci status\" src=\"https://results.pre-commit.ci/badge/github/edgarrmondragon/tap-socketdev/main.svg\"/>\n </a>\n <a href=\"https://github.com/edgarrmondragon/tap-socketdev/blob/main/LICENSE\">\n <img alt=\"License\" src=\"https://img.shields.io/github/license/edgarrmondragon/tap-socketdev\"/>\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-socketdev/\">\n <img alt=\"Python versions\" src=\"https://img.shields.io/pypi/pyversions/tap-socketdev\"/>\n </a>\n</div>\n\nSinger tap for [socket.dev](https://socket.dev).\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-socketdev --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-socketdev` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-socketdev --version\ntap-socketdev --help\ntap-socketdev --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-socketdev` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-socketdev --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-socketdev\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-socketdev --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-socketdev 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 Socket, built with the Meltano SDK for Singer Taps.",
"version": "0.3.0",
"project_urls": {
"Documentation": "https://github.com/edgarrmondragon/tap-socketdev#readme",
"Homepage": "https://github.com/edgarrmondragon/tap-socketdev",
"Repository": "https://github.com/edgarrmondragon/tap-socketdev"
},
"split_keywords": [
"elt",
" singer.io",
" socket"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6a7b07b846335287ae6cde38ada3731e58e5d7cb185bb876505f56978fc6567e",
"md5": "6696940e050de58e5e462b2b8ef261ba",
"sha256": "ca622f5346c2ef2b80bd59adbbd9fa19fc218a74c3f0f66e8862da1ef0860053"
},
"downloads": -1,
"filename": "tap_socketdev-0.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6696940e050de58e5e462b2b8ef261ba",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 9240,
"upload_time": "2024-11-19T18:08:47",
"upload_time_iso_8601": "2024-11-19T18:08:47.922471Z",
"url": "https://files.pythonhosted.org/packages/6a/7b/07b846335287ae6cde38ada3731e58e5d7cb185bb876505f56978fc6567e/tap_socketdev-0.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76d613cebcc19786cbcc221aad31899a2f8a009686687316cb375682804adaee",
"md5": "012ca191901ad86c366ae654755ed861",
"sha256": "a81cb511b72e61acca063fb48f8037da0157590028fedc7deb013f590665d9b3"
},
"downloads": -1,
"filename": "tap_socketdev-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "012ca191901ad86c366ae654755ed861",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 8162,
"upload_time": "2024-11-19T18:08:49",
"upload_time_iso_8601": "2024-11-19T18:08:49.719790Z",
"url": "https://files.pythonhosted.org/packages/76/d6/13cebcc19786cbcc221aad31899a2f8a009686687316cb375682804adaee/tap_socketdev-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-19 18:08:49",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "edgarrmondragon",
"github_project": "tap-socketdev",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "tap-socketdev"
}