tap-podbean
is a Singer tap for Podbean.
Built with the Meltano Tap SDK for Singer Taps and the Podbean API Reference
Podbean tap class.
Built with the Meltano SDK for Singer Taps and Targets.
catalog
state
discover
about
stream-maps
schema-flattening
Setting | Required | Default | Description |
---|---|---|---|
client_id | True | None | The client identifier to authenticate against the API service. |
client_secret | True | None | The client secret to authenticate against the API service. |
start_date | True | None | The earliest datetime (UTC) to sync records. |
auth_expiration | False | 300 | Expiraton in seconds for auth. (Range: 60-604800) |
limit | False | 100 | The number of records to return per page. (Range: 0-100) |
user_agent | False | None | User agent to present to the API. |
api_url | False | None | Override the API service base URL. |
A full list of supported settings and capabilities for this tap is available by running:
tap-podbean --about
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.
Obtain the client_id and client_secret from an existing app registration or register a new app.
You can easily run tap-podbean
by itself or in a pipeline using Meltano.
Scopes used by this tap:
- podcast_read
- episode_read
- private_members
tap-podbean --version
tap-podbean --help
tap-podbean --config CONFIG --discover > ./catalog.json
Follow these instructions to contribute to this project.
pipx install poetry
poetry install
Create tests within the tap_podbean/tests
subfolder and
then run:
poetry run pytest
You can also test the tap-podbean
CLI interface directly using poetry run
:
poetry run tap-podbean --help
Testing with Meltano
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.
Next, install Meltano (if you haven't already) and any needed plugins:
# Install meltano
pipx install meltano
# Initialize meltano within this directory
cd tap-podbean
meltano install
Now you can test and orchestrate using Meltano:
# Test invocation:
meltano invoke tap-podbean --version
# OR run a test `elt` pipeline:
meltano elt tap-podbean target-jsonl
See the dev guide for more instructions on how to use the SDK to develop your own taps and targets.