Best way to create a simple python web service - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:18:35Z http://stackoverflow.com/feeds/question/415192 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service 6 Best way to create a simple python web service Jeremy Michael Cantrell 2009-01-06T02:17:54Z 2009-01-06T20:50:50Z <p>I've been using python for years, but I have little experience with python web programming. I'd like to create a very simple web service that exposes some functionality from an existing python script for use within my company. It will likely return the results in csv. What's the quickest way to get something up? If it affects your suggestion, I will likely be adding more functionality to this, down the road.</p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415242#415242 1 Answer by S.Lott for Best way to create a simple python web service S.Lott 2009-01-06T02:32:50Z 2009-01-06T02:32:50Z <p>Life is simple if you get a good web framework. Web services in <a href="http://www.djangoproject.com" rel="nofollow">Django</a> are easy. Define your model, write view functions that return your CSV documents. Skip the templates.</p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415248#415248 2 Answer by Greg Hewgill for Best way to create a simple python web service Greg Hewgill 2009-01-06T02:36:24Z 2009-01-06T02:36:24Z <p>The simplest way to get a Python script online is to use CGI:</p> <pre><code>#!/usr/bin/python print "Content-type: text/html" print print "&lt;p&gt;Hello world.&lt;/p&gt;" </code></pre> <p>Put that code in a script that lives in your web server CGI directory, make it executable, and run it. The <code>cgi</code> module has a number of useful utilities when you need to accept parameters from the user.</p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415299#415299 7 Answer by Tim Lesher for Best way to create a simple python web service Tim Lesher 2009-01-06T02:59:18Z 2009-01-06T02:59:18Z <p><a href="http://webpy.org/" rel="nofollow">web.py</a> is probably the simplest web framework out there. "Bare" CGI is simpler, but you're completely on your own when it comes to making a service that actually does something.</p> <p>"Hello, World!" according to web.py isn't much longer than an bare CGI version, but it adds URL mapping, HTTP command distinction, and query parameter parsing <em>for free</em>:</p> <pre><code>import web urls = ( '/(.*)', 'hello' ) app = web.application(urls, globals()) class hello: def GET(self, name): if not name: name = 'world' return 'Hello, ' + name + '!' if __name__ == "__main__": app.run() </code></pre> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415303#415303 3 Answer by Charlie Martin for Best way to create a simple python web service Charlie Martin 2009-01-06T03:01:26Z 2009-01-06T03:01:26Z <p>Raw CGI is kind of a pain, Django is kind of heavyweight. There are a number of simpler, lighter frameworks about, like, eg, CherryPy. It's worth looking around a big.</p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415338#415338 5 Answer by Peter Hoffmann for Best way to create a simple python web service Peter Hoffmann 2009-01-06T03:18:24Z 2009-01-06T03:18:24Z <p>Have a look at <a href="http://werkzeug.pocoo.org/" rel="nofollow">werkzeug</a>. Werkzeug started as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility modules. It includes a powerful debugger, full featured request and response objects, HTTP utilities to handle entity tags, cache control headers, HTTP dates, cookie handling, file uploads, a powerful URL routing system and a bunch of community contributed addon modules.</p> <p>It includes lots of cool tools to work with http and has the advantage that you can use it with wsgi in different environments (cgi, fcgi, apache/mod_wsgi or with a plain simple python server for debugging). </p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415345#415345 1 Answer by che for Best way to create a simple python web service che 2009-01-06T03:21:51Z 2009-01-06T03:21:51Z <p>If you mean "web service" in SOAP/WSDL sense, you might want to look at <a href="http://stackoverflow.com/questions/273002/generating-a-wsdl-using-python-and-soappy">http://stackoverflow.com/questions/273002/generating-a-wsdl-using-python-and-soappy</a></p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415380#415380 1 Answer by mabbit for Best way to create a simple python web service mabbit 2009-01-06T03:46:26Z 2009-01-06T03:46:26Z <p>maybe Twisted <a href="http://twistedmatrix.com/trac/" rel="nofollow">http://twistedmatrix.com/trac/</a></p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/416158#416158 3 Answer by S.Lott for Best way to create a simple python web service S.Lott 2009-01-06T11:19:54Z 2009-01-06T11:19:54Z <p>Look at the <a href="http://docs.python.org/library/wsgiref.html" rel="nofollow">WSGI reference implementation</a>. You already have it in your Python libraries. It's quite simple.</p> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/418087#418087 0 Answer by mdorseif for Best way to create a simple python web service mdorseif 2009-01-06T20:50:50Z 2009-01-06T20:50:50Z <p>If you mean with "Web Service" something accessed by other Programms <a href="http://docs.python.org/library/simplexmlrpcserver.html" rel="nofollow">SimpleXMLRPCServer</a> might be right for you. It is included with every Python install since Version 2.2.</p> <p>For Simple human accessible things I usually use Pythons <a href="http://docs.python.org/library/simplehttpserver.html" rel="nofollow">SimpleHTTPServer</a> which also comes with every install. Obviously you also could access SimpleHTTPServer by client programs.</p>