hf-tap-filesanywhere


Namehf-tap-filesanywhere JSON
Version 0.0.1 PyPI version JSON
download
home_pageNone
Summary`tap-filesanywhere` is a Singer tap for FilesAnywhere, built with the Meltano Singer SDK.
upload_time2024-03-21 15:25:38
maintainerNone
docs_urlNone
authorTanner Euston
requires_python<4.0,>=3.8
licenseApache-2.0
keywords elt filesanywhere
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # tap-filesanywhere

`tap-filesanywhere` is a Singer tap for FilesAnywhere.

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

Install from GitHub:

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

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

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

### Executing the Tap Directly

```bash
tap-filesanywhere --version
tap-filesanywhere --help
tap-filesanywhere --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-filesanywhere` CLI interface directly using `poetry run`:

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

Now you can test and orchestrate using Meltano:

```bash
# Test invocation:
meltano invoke tap-filesanywhere --version
# OR run a test `elt` pipeline:
meltano elt tap-filesanywhere 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": "hf-tap-filesanywhere",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "ELT, FilesAnywhere",
    "author": "Tanner Euston",
    "author_email": "teuston@healthfirst.org",
    "download_url": "https://files.pythonhosted.org/packages/1f/ac/f4f691c00a6082444237369f699e5211f935d533b1c90d466c009c2c73d8/hf_tap_filesanywhere-0.0.1.tar.gz",
    "platform": null,
    "description": "# tap-filesanywhere\n\n`tap-filesanywhere` is a Singer tap for FilesAnywhere.\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-filesanywhere\n```\n\nInstall from GitHub:\n\n```bash\npipx install git+https://github.com/ORG_NAME/tap-filesanywhere.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-filesanywhere --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-filesanywhere --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-filesanywhere` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-filesanywhere --version\ntap-filesanywhere --help\ntap-filesanywhere --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-filesanywhere` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-filesanywhere --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-filesanywhere\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-filesanywhere --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-filesanywhere 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-filesanywhere` is a Singer tap for FilesAnywhere, built with the Meltano Singer SDK.",
    "version": "0.0.1",
    "project_urls": null,
    "split_keywords": [
        "elt",
        " filesanywhere"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bef4d1160d601323baab10079986c003eeed68dc329806716ab2f7fc7cce858e",
                "md5": "550248c1993ff8d78d4e08c63de82967",
                "sha256": "c3be993082be3de937f3b222724e2b2ce12b6e74248bc90fb996001e2505237f"
            },
            "downloads": -1,
            "filename": "hf_tap_filesanywhere-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "550248c1993ff8d78d4e08c63de82967",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 21861,
            "upload_time": "2024-03-21T15:25:37",
            "upload_time_iso_8601": "2024-03-21T15:25:37.051860Z",
            "url": "https://files.pythonhosted.org/packages/be/f4/d1160d601323baab10079986c003eeed68dc329806716ab2f7fc7cce858e/hf_tap_filesanywhere-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1facf4f691c00a6082444237369f699e5211f935d533b1c90d466c009c2c73d8",
                "md5": "71f09bf3cc3c7115acab0e99a2ea1dd6",
                "sha256": "deca86da82245a9de485aebd03ad7691bad71bcf87d52ad494eaa97192f0a89a"
            },
            "downloads": -1,
            "filename": "hf_tap_filesanywhere-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "71f09bf3cc3c7115acab0e99a2ea1dd6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 19526,
            "upload_time": "2024-03-21T15:25:38",
            "upload_time_iso_8601": "2024-03-21T15:25:38.895336Z",
            "url": "https://files.pythonhosted.org/packages/1f/ac/f4f691c00a6082444237369f699e5211f935d533b1c90d466c009c2c73d8/hf_tap_filesanywhere-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-21 15:25:38",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "hf-tap-filesanywhere"
}
        
Elapsed time: 0.21079s