get_followers does not return cursor
It appears that channel.get_followers does not return the cursor. So the maximum number of followers you can get is 100. maybe add a get_all_followers function or just return the entire response which would include the cursor.
Just realized I can use offset, still may want to return cursor in the future so it can be used as an option
Hi, first of all thank you @tsifrer for creating this library, I just tried it for an hour and its very nice:). If you find the time, I'd like to suggest another feature: a function that automatically iterates over pages (e.g. for followers) and tries to retrieve all results while respecting the rate limits of the twitch API. This would be super useful.
This lib actually really does need cursor because Twitch's API only allows offset to a max of 1600. After that they tell you to use a cursor: https://github.com/justintv/Twitch-API/issues/647
So you could only ever get 1600 followers max for a channel without a cursor.