Jason Morgan
jwm-modpython at sentinelchicken.net
Fri Aug 12 11:43:47 EDT 2005
On Fri, Aug 12, 2005 at 05:30:31PM +0200, M. R. wrote: > Hi, > > I'm quite new to python and absolutely to mod_python. > I've already read the tutorial on the mod_python site. > Does anyone know some more tutorials with topics like database connectivity > and file uploading, etc, ... ? > > That would be great. > I would take a look at the docs regarding the various web-related modules available on the python site. The cgi modules is especially helpful and will help you with mod_python. http://python.org/doc/2.4.1/lib/module-cgi.html For database access, what database system are you using? For MySQL, see the MySQLdb module. But the API is similar for other database modules. http://python.org/topics/database/ In general, the python.org site will be your best resource. Cheers, Jason
|