In case you want some nice formatted prints, I am using json dumps to check on large dicts otherwise very complex to read in the console:
import json print json.dumps(my_dict, sort_keys=True, indent=4) On Saturday, 6 June 2015 05:26:39 UTC+2, [email protected] wrote: > > One debugging method I find helpful is being able to "print" to console > the variables, objects, etc. > I'm creating a decoupled application and the client-side is sending args > to the server-side. To understand what these args exactly entail I'd like > to print them out using Python. > Consider this example: > > @request.restful() > def clients(): > def POST(**vars): > print **vars > return ... > > By printing **vars, I intend to see that in console (or somewhere). Is > this possible? If so, how can I achieve this? > > Thanks :) > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

