"fine print" appears to be missing from goal attributes
Opened this issue · 1 comments
matkoniecz commented
it seems to be available in the general api - see http://api.beeminder.com/#goal
matkoniecz commented
As workaround I will be using Python and https://github.com/narthur/pyminder instead
import time
from pyminder.pyminder import Pyminder
def token():
return open("token.secret").read()
pyminder = Pyminder(user='[your username]', token=token())
goals = pyminder.get_goals()
for goal in goals:
# Goal objects expose all API data as dynamic properties.
# http://api.beeminder.com/#attributes-2
print(goal.fineprint)