Name | tap-paylocity JSON |
Version |
1.2.2
JSON |
| download |
home_page | None |
Summary | Singer tap for Paylocity, built with the Meltano Singer SDK. |
upload_time | 2025-01-13 19:07:02 |
maintainer | None |
docs_url | None |
author | Derek Wayne |
requires_python | >=3.9 |
license | Apache-2.0 |
keywords |
elt
paylocity
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# tap-paylocity
`tap-paylocity` is a Singer tap for Paylocity.
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-paylocity
```
Install from GitHub:
```bash
pipx install git+https://github.com/ORG_NAME/tap-paylocity.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-paylocity --about --format=markdown
```
-->
A full list of supported settings and capabilities for this
tap is available by running:
```bash
tap-paylocity --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-paylocity` by itself or in a pipeline using [Meltano](https://meltano.com/).
### Executing the Tap Directly
```bash
tap-paylocity --version
tap-paylocity --help
tap-paylocity --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-paylocity` CLI interface directly using `poetry run`:
```bash
poetry run tap-paylocity --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-paylocity
meltano install
```
Now you can test and orchestrate using Meltano:
```bash
# Test invocation:
meltano invoke tap-paylocity --version
# OR run a test `elt` pipeline:
meltano run tap-paylocity 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": "tap-paylocity",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "ELT, Paylocity",
"author": "Derek Wayne",
"author_email": "derek@getrapidinsights.com",
"download_url": "https://files.pythonhosted.org/packages/eb/1a/741876897fc9d0b9321f4e19674e1918e7a1899ecae09cda4b3ec63962d3/tap_paylocity-1.2.2.tar.gz",
"platform": null,
"description": "# tap-paylocity\n\n`tap-paylocity` is a Singer tap for Paylocity.\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-paylocity\n```\n\nInstall from GitHub:\n\n```bash\npipx install git+https://github.com/ORG_NAME/tap-paylocity.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-paylocity --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-paylocity --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-paylocity` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-paylocity --version\ntap-paylocity --help\ntap-paylocity --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-paylocity` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-paylocity --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-paylocity\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-paylocity --version\n# OR run a test `elt` pipeline:\nmeltano run tap-paylocity 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 Paylocity, built with the Meltano Singer SDK.",
"version": "1.2.2",
"project_urls": null,
"split_keywords": [
"elt",
" paylocity"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0f621da7120ed5c9dbe49172b89107ba04ec781a0acff1b6f37628a5954c142d",
"md5": "49fb7a79290b50bfd4f62a8405c8aba0",
"sha256": "d0c239fcbed8d64d20bace30bfb70a28bc2b8fa26bb2bd7fddf6d2d036dce814"
},
"downloads": -1,
"filename": "tap_paylocity-1.2.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "49fb7a79290b50bfd4f62a8405c8aba0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 13546,
"upload_time": "2025-01-13T19:06:59",
"upload_time_iso_8601": "2025-01-13T19:06:59.839567Z",
"url": "https://files.pythonhosted.org/packages/0f/62/1da7120ed5c9dbe49172b89107ba04ec781a0acff1b6f37628a5954c142d/tap_paylocity-1.2.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb1a741876897fc9d0b9321f4e19674e1918e7a1899ecae09cda4b3ec63962d3",
"md5": "2f84e9bc5cb96327b2b938c3ef87a811",
"sha256": "d099d987257bb7157109c1584fbbfcb21605eaa6b3f5dd215eb8cebc4841d54a"
},
"downloads": -1,
"filename": "tap_paylocity-1.2.2.tar.gz",
"has_sig": false,
"md5_digest": "2f84e9bc5cb96327b2b938c3ef87a811",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 12052,
"upload_time": "2025-01-13T19:07:02",
"upload_time_iso_8601": "2025-01-13T19:07:02.292255Z",
"url": "https://files.pythonhosted.org/packages/eb/1a/741876897fc9d0b9321f4e19674e1918e7a1899ecae09cda4b3ec63962d3/tap_paylocity-1.2.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-13 19:07:02",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "tap-paylocity"
}