Ian OLeary
02/19/2024, 2:25 PMplugins:
extractors:
- name: tap-jobdiva
pip_url: -e .\\taps\\tap-jobdiva\\tap_jobdiva
I can't seem to install my custom made tap into my main meltano project. Here's what my pip_url looks like but I keep getting this error:
>meltano install extractors
Extractor 'tap-jobdiva' is not known to Meltano. Try running `meltano lock --update --all` to ensure your plugins are up to date.
then when I run meltano lock --update --all
it gives me this:
Extractor 'tap-jobdiva' is not known to Meltano. Check <https://hub.meltano.com/> for available plugins.
(the "tap_jobdiva" dir is where my client.py, auth.py, tap.py, & streams.py all exist)Reuben (Matatika)
02/19/2024, 3:54 PM- name: tap-jobdiva
pip_url: -e .\\taps\\tap-jobdiva\\tap_jobdiva
namespace: tap_jobdjiva
.lock
files are not applicable for custom plugins - just those that exist on the Hub.Ian OLeary
02/19/2024, 6:06 PM