[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
- 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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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?

Thanks in advance :)

-- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 how can i 
skip of that extera Apostrophe character

`'\xd9\x85\xd8\xad\xd9\x85\xd9\x88\xd8\xaf\xdb\x8c'`


--