You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use this module to dump the whole json of a board, for which I have a parser. Right now I do it every week manually, and this would definitely speed the process up, but I'm unsure about how to do it.
Any help would be appreciated.
The text was updated successfully, but these errors were encountered:
ORG_ID="..."client=TrelloClient(...)
# decoded JSON (python dict but no class)board=client.fetch_json(f"/organizations/{ORG_ID}/boards")
# actual JSON in a stringraw_board=json.dumps(board)
This returns the result of requests.Response.json so you don't actually get JSON but the pythonic representation of it.
Either your parser can work with that or you should pass it to json.dumps.
I would like to use this module to dump the whole json of a board, for which I have a parser. Right now I do it every week manually, and this would definitely speed the process up, but I'm unsure about how to do it.
Any help would be appreciated.
The text was updated successfully, but these errors were encountered: