summaryrefslogtreecommitdiff
path: root/pypers/pycon07/abstract-en.txt
diff options
context:
space:
mode:
authormichele.simionato <devnull@localhost>2007-12-11 05:05:51 +0000
committermichele.simionato <devnull@localhost>2007-12-11 05:05:51 +0000
commit942c5d69ab765feead8c49d2ca724419bcf281c4 (patch)
tree705429e5644a07425e3bc9004b6eacae239f0dc7 /pypers/pycon07/abstract-en.txt
parent9b1b7aa5a6b762b1110391c79241a1b8dccbfa83 (diff)
downloadmicheles-942c5d69ab765feead8c49d2ca724419bcf281c4.tar.gz
Removed some cruft
Diffstat (limited to 'pypers/pycon07/abstract-en.txt')
-rw-r--r--pypers/pycon07/abstract-en.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/pypers/pycon07/abstract-en.txt b/pypers/pycon07/abstract-en.txt
new file mode 100644
index 0000000..844956c
--- /dev/null
+++ b/pypers/pycon07/abstract-en.txt
@@ -0,0 +1,12 @@
+As the old saying goes, Python is the only language with more Web frameworks than
+keywords. This is sometimes an advantage, but more often than not, it is an issue.
+In order to improve the interoperability between different frameworks, Phillip
+J. Eby proposed in 2003 a specification, the WSGI or Web Server Gateway
+Interface, a.k.a Whiskey. In my talk I will discuss how you can achieve portability
+of your application by following the WSGI protocol. I will give practical
+examples of how to use the WSGI reference implementation which is part of the
+standard library (wsgiref), of how to supplement it with other WSGI-compliant
+libraries (notably Paste by Ian Bicking) and of how to integrate your WSGI
+application in different frameworks including Zope, Twisted, TurboGears et al.
+The talk is intended as a tutorial and requires only elementary knowledge of
+Web programming, at the level of simple CGI.