# tap-mailchimp
`tap-mailchimp` is a Singer tap for Mailchimp.
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-mailchimp
```
Install from GitHub:
```bash
pipx install git+https://github.com/ORG_NAME/tap-mailchimp.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-mailchimp --about --format=markdown
```
-->
A full list of supported settings and capabilities for this
tap is available by running:
```bash
tap-mailchimp --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-mailchimp` by itself or in a pipeline using [Meltano](https://meltano.com/).
### Executing the Tap Directly
```bash
tap-mailchimp --version
tap-mailchimp --help
tap-mailchimp --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-mailchimp` CLI interface directly using `poetry run`:
```bash
poetry run tap-mailchimp --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-mailchimp
meltano install
```
Now you can test and orchestrate using Meltano:
```bash
# Test invocation:
meltano invoke tap-mailchimp --version
# OR run a test `elt` pipeline:
meltano run tap-mailchimp 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": "oviond-tap-mailchimp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "ELT, Mailchimp",
"author": "Lesedi Kwatsherema",
"author_email": "lesedi@oviond.com",
"download_url": "https://files.pythonhosted.org/packages/28/f0/a0b069e747fd1bdbabea919ecc093c2e09e6e74a5f57af089f97e5c0bbca/oviond_tap_mailchimp-0.0.1.tar.gz",
"platform": null,
"description": "# tap-mailchimp\n\n`tap-mailchimp` is a Singer tap for Mailchimp.\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-mailchimp\n```\n\nInstall from GitHub:\n\n```bash\npipx install git+https://github.com/ORG_NAME/tap-mailchimp.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-mailchimp --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-mailchimp --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-mailchimp` by itself or in a pipeline using [Meltano](https://meltano.com/).\n\n### Executing the Tap Directly\n\n```bash\ntap-mailchimp --version\ntap-mailchimp --help\ntap-mailchimp --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-mailchimp` CLI interface directly using `poetry run`:\n\n```bash\npoetry run tap-mailchimp --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-mailchimp\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-mailchimp --version\n# OR run a test `elt` pipeline:\nmeltano run tap-mailchimp 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": "Singer tap for Mailchimp, built with the Meltano Singer SDK.",
"version": "0.0.1",
"project_urls": null,
"split_keywords": [
"elt",
" mailchimp"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d54441f64ef43bcd71c4cad18f2f04e5b24793bda6b39b7d82c9dd3cde87a0d6",
"md5": "b96b8bd77f24146174a748aa4cd23047",
"sha256": "2bca859a3c2db589b42d8106e756152accfa10bfdb445d1008ce6c88b33cae82"
},
"downloads": -1,
"filename": "oviond_tap_mailchimp-0.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b96b8bd77f24146174a748aa4cd23047",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 8720,
"upload_time": "2024-11-27T14:26:36",
"upload_time_iso_8601": "2024-11-27T14:26:36.199507Z",
"url": "https://files.pythonhosted.org/packages/d5/44/41f64ef43bcd71c4cad18f2f04e5b24793bda6b39b7d82c9dd3cde87a0d6/oviond_tap_mailchimp-0.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28f0a0b069e747fd1bdbabea919ecc093c2e09e6e74a5f57af089f97e5c0bbca",
"md5": "4b9840620360e73d10950f5f375a311e",
"sha256": "acb43e11007ae7ec377023d98503b5f3cf81faa71191fa3136f718f846db7e0c"
},
"downloads": -1,
"filename": "oviond_tap_mailchimp-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "4b9840620360e73d10950f5f375a311e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 8686,
"upload_time": "2024-11-27T14:26:37",
"upload_time_iso_8601": "2024-11-27T14:26:37.781878Z",
"url": "https://files.pythonhosted.org/packages/28/f0/a0b069e747fd1bdbabea919ecc093c2e09e6e74a5f57af089f97e5c0bbca/oviond_tap_mailchimp-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-27 14:26:37",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "oviond-tap-mailchimp"
}