Tag: python

  • Recursion and How to Get All the records from a paginated API

    Recursion and How to Get All the records from a paginated API

    I was recently working with an API that limited the max number of items it let you call at once. This was frustrating, because I needed everything. The solution, thankfully was recursion. Recursion is really fun when you get to use it. I needed to use this solution in both JavaScript and Python, so I…