larissa_mendes_hermogenes_rocha
05/25/2022, 7:55 PMmeltano install extractor tap-twitter
. Apparently the installation is successful but when I use meltano invoke tap-gitlab --help
I get the following error: "ModuleNotFoundError: No module named 'pendulum'", am I missing something? Here's how I added the tap to my meltano.yml:
- name: tap-twitter
namespace: tap_twitter
pip_url: git+<https://github.com/bernietai/tap-twitter.git>
executable: tap-twitter
capabilities:
- catalog
- discover
config: {
start_date: '2000-01-01T00:00:00Z',
consumer_key: "my_consumer_key",
consumer_secret: "my_consumer_secret",
count: 100
}
ptd
05/25/2022, 8:01 PMtap-twitter
has a bug. It imports the pendulum
library but it doesn’t list that library in its dependencies. It’s possible that one of its listed dependencies used to pull it in but doesn’t anymore, not sure. Anyway, you could try opening an issue on https://github.com/bernietai/tap-twitter but since it hasn’t been updated in over 4 years I’m not sure how responsive the maintainers would be. Can’t hurt to try, though.larissa_mendes_hermogenes_rocha
05/25/2022, 8:23 PMlarissa_mendes_hermogenes_rocha
05/25/2022, 8:25 PMalexander_butler
05/25/2022, 8:43 PM