I solved it by using regular expressions from the re library :) On Sunday, November 17, 2013 8:42:42 PM UTC-5, melmg wrote: > > I changed it to: > return dict(answer=answer) > but the response looked the same through Firebug... I'm sure I'm not doing > it right, I was only trying to do that to see what the response looks like. > My main concern is how to look through the response in "answer = > conn.getresponse()" and get the values of ps, ls, pf, and pd. I'm not sure > how to step through the code and get those values to save them to the > database. > > > > On Saturday, November 16, 2013 5:02:48 PM UTC-5, Niphlod wrote: >> >> you're not returning anything from the controller to the view..... >> >> def something(): >> #...should actually return something :-P >> return dict(a=collected_values,b=collected_values2, etc etc etc) >> >> >> >> >>
-- 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/groups/opt_out.

