Best way to create a simple python web service - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T17:18:35Zhttp://stackoverflow.com/feeds/question/415192http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service6Best way to create a simple python web serviceJeremy Michael Cantrell2009-01-06T02:17:54Z2009-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#4152421Answer by S.Lott for Best way to create a simple python web serviceS.Lott2009-01-06T02:32:50Z2009-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#4152482Answer by Greg Hewgill for Best way to create a simple python web serviceGreg Hewgill2009-01-06T02:36:24Z2009-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 "<p>Hello world.</p>"
</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#4152997Answer by Tim Lesher for Best way to create a simple python web serviceTim Lesher2009-01-06T02:59:18Z2009-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#4153033Answer by Charlie Martin for Best way to create a simple python web serviceCharlie Martin2009-01-06T03:01:26Z2009-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#4153385Answer by Peter Hoffmann for Best way to create a simple python web servicePeter Hoffmann2009-01-06T03:18:24Z2009-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#4153451Answer by che for Best way to create a simple python web serviceche2009-01-06T03:21:51Z2009-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#4153801Answer by mabbit for Best way to create a simple python web servicemabbit2009-01-06T03:46:26Z2009-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#4161583Answer by S.Lott for Best way to create a simple python web serviceS.Lott2009-01-06T11:19:54Z2009-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#4180870Answer by mdorseif for Best way to create a simple python web servicemdorseif2009-01-06T20:50:50Z2009-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>