[web2py] REST testing with pytest

2015-06-18 Thread amir
Here's what I have: def users(): def GET(u_id): return user def POST(**kwargs): return new user created return locals() I need to test the REST routes that I've created in controllers. So far I just keep getting a 500 status. Any ideas? -- Resources: - http://web2py.com -

[web2py] Debugging Web2py applications.

2015-06-05 Thread amir
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

[web2py] Import an entire file into another file.

2015-06-05 Thread amir
In rails you can do require filename and use anything from that file. Can you do something similar in Web2py? Here's the situation: fila_a.py in Controllers file_b.py in Controllers I need to import most of the functions (or all of them) from file_a.py into file_b.py. How can I achieve this?

[web2py] problem with unicode string in couchdb

2012-06-24 Thread Amir M. Mahmoudi
Hi, i'm trying to use couchDB in web2py, first of all i should say use dal in trunk version. but i have a problem for handling unicode characters. and also i noticed web2py add extra `'` to string after insert. look at my result: first of all i whant to know to handle the utf-8 strings and then