I'm creating a tap that connects to an XML API. Th...
# singer-tap-development
j
I'm creating a tap that connects to an XML API. This API is rate limited and can accept requests of up-to 1000 records, 150 requests per minute, 10,000 requests per day. The stream I'm using to process this data currently inherits from the
Stream
base class. Any recommendations on how to handle this? Is the
RESTStream
the place to look?