03-22-2018 16:38
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

03-22-2018 16:38
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
I'm trying to write what I'd think should be a simple python program to query my historical step totals for each day, but am running into the 150 queries/hour limitation. With 1000+ days of data, it's a bit painful doing 4 months, sleeping an hour, and so on until getting up to today.
Getting the step totals for a particular date is easy in python-fitbit ala:
activities=auth2_client.activities("2017-12-31")
But of course I'd like to do a range of data, say a month, all in one query rather than needing 31 for the month of December.
Anybody know the magic incantation for a python-fitbit query that would do that, or alternately is there a forums site that author hangs out in that would be a better place to ask the question ? I'm reluctant to even try StackOverflow as that forum is so toxic to anybody except the cool kids....
Thanks...
