Hi all - working on moving some taps to the meltan...
# singer-tap-development
a
Hi all - working on moving some taps to the meltano SDK and I have a quick (maybe dumb) question for y’all: we define a bunch of functions in client.py/ tap.py etc. but where are they actually executed? Is this somewhere in the meltano codebase itself? Trying to trace through a
get_next_page_token()
function in an example tap so I can understand what the
previous_token
arg is in a specific API call. Thanks in advance.
a
Hi, @alice_leach! Sounds like a great project. The code you'll add when using the SDK gets called by the base class methods in the SDK itself. It may be helpful to also clone this repo as well: GitHub.com/Meltano/SDK This would allow you to search for references to get_next_page_token, for instance, and see where it is called.
a
awesome - thank you
a
This section of the docs may also be helpful. It is auto generated from all class and methods signatures in the base SDK implementation: https://sdk.meltano.com/en/latest/reference.html
You're very welcome!