Skip to content Skip to sidebar Skip to footer

Python Web.py Web Service Multiple Parameters Query Not Working

I did a web service using web.py install web.py cd webpy edit python web service. #!/usr/bin/env python urls = ('/title_matching2','title_matching2') app = web.application(urls,g

Solution 1:

The [1] 1190 you're seeing isn't from you web.py code (which is correct as written). It is from your shell in response to your 'links' command.

The shell is seeing the unescaped ampersand (&) and putting your links command to execute in the background [1] with process id 1190.

Surround the URL with quotes, for example:

links 'http://localhost:8080/title_matching4?title=diehard&prod=feature'

Post a Comment for "Python Web.py Web Service Multiple Parameters Query Not Working"