summaryrefslogtreecommitdiff
path: root/pypers/europython07/abstract-en.txt
diff options
context:
space:
mode:
authormichele.simionato <devnull@localhost>2007-12-02 11:13:11 +0000
committermichele.simionato <devnull@localhost>2007-12-02 11:13:11 +0000
commit20ce686b0193d67ea56823a30551140f88b3aee1 (patch)
tree76015e7e4dc0b000bd857a2bdba6fb7976ac29a7 /pypers/europython07/abstract-en.txt
parentf08f40335ad7f0ac961f25dabaaed34c4d4bcc44 (diff)
downloadmicheles-20ce686b0193d67ea56823a30551140f88b3aee1.tar.gz
Commited all py papers into Google code
Diffstat (limited to 'pypers/europython07/abstract-en.txt')
-rw-r--r--pypers/europython07/abstract-en.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/pypers/europython07/abstract-en.txt b/pypers/europython07/abstract-en.txt
new file mode 100644
index 0000000..844956c
--- /dev/null
+++ b/pypers/europython07/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.