|
About:
Mod_python is an Apache module that embeds the Python language interpreter within the server, allowing for Apache handlers to be written in Python for faster and more powerful applications than plain CGI.
Author:
Gregory Trubetskoy <grisha __at__ ispol __dot__ com>
[contact developer]
Homepage:
http://www.modpython.org/
Tar/GZ:
http://www.modpython.org/dist/
Changelog:
http://www.modpython.org/live/mod_python-2.7.5/NEWS
Mailing list archive:
http://www.modpython.org/pipermail/mod_python/
Trove categories:
[change]
Dependencies:
[change]
No dependencies filed
|
|
» Rating:
8.27/10.00
(Rank N/A)
» Vitality: 0.00% (Rank 9146)
» Popularity: 1.18% (Rank 4882)

(click to enlarge graphs)
Record hits: 11,415
URL hits: 5,647
Subscribers: 30
|
|
Branches
Releases
|
Version
|
Focus
|
Date
|
|
2.7.5
|
Minor bugfixes |
05-Jul-2001 07:07 |
|
2.7.4
|
Minor bugfixes |
04-Jun-2001 18:16 |
|
2.7.3
|
Minor bugfixes |
13-May-2001 04:49 |
|
2.7.2
|
Minor feature enhancements |
21-Feb-2001 23:07 |
|
2.7.1
|
N/A |
18-Dec-2000 22:57 |
|
2.6.4
|
N/A |
12-Dec-2000 16:18 |
|
2.6.3
|
N/A |
30-Oct-2000 19:58 |
|
2.6.2
|
N/A |
22-Oct-2000 05:11 |
|
2.6.1
|
N/A |
21-Oct-2000 21:24 |
|
2.6
|
N/A |
19-Oct-2000 02:51 |
Articles referencing this project
- Debian: New mod_python packages fix information leak
by Patrick Lenz
,
in Security
Wed, Feb 23rd 2005 08:33
- Red Hat: Updated mod_python package fixes security issue
by Patrick Lenz
,
in Security
Thu, Feb 10th 2005 09:57
- Debian: New libapache-mod-python packages fix denial of service
by Patrick Lenz
,
in Security
Sun, Feb 29th 2004 22:21
- Red Hat: Updated mod_python packages fix denial of service vulnerability
by Patrick Lenz
,
in Security
Wed, Feb 25th 2004 23:45
- Red Hat: Updated mod_python packages available
by Patrick Lenz
,
in Security
Fri, May 3rd 2002 01:04
Comments
[»]
Re: diff
by RangerElf - Dec 12th 2000 15:03:09
Hmmm... I'll hazard a guess.
mod_snake, from what I gathered while experimenting with it (for
a little while, I confess, because it seemed to me a bit limited in scope),
seems to be a Python CGI accelerator, it keeps the Python interpreter at
hand, so when it needs to run a Python CGI, it just passes the script to
it's interpreter along with all relevant CGI information, and lets it rip.
Also, it has the added convenience of not having to reload the script every
time it's run, only on it's first invocation or after a modification (date
changes between *.py and *.pyc).
And, on the other hand, mod_python is a handler, which can
interface directly with Apache and it's internal module API; so, you can
write Python extensions to Apache, use Python to handle many chores like
authentication, pre-/post- connection processing, URL translation, etc...
it depends on what part of the HTTP handshake you want to handle,
and write a Python handler for that chore.
So, it seems to me that mod_python is much more flexible than
mod_snake, but with the added disadvantage of being more complicated
to develop for. Check them both out, to see which benefits you more.
-elf
[reply]
[top]
[»]
Re: diff
by beagle2 - May 13th 2001 13:44:11
mod_snake is much more than the CGI accelerator described by the previous
post. It provides complete access to the Apache internals.
mod_snake is more low-level than mod_python. It's possible to build the
mod_python user model with mod_snake, but not vice versa.
[reply]
[top]
[»]
diff?
by karellen - Oct 23rd 2000 04:09:19
What are the differences between this and mod_snake? two
parallel projects trying to acquire the same functionality?
[reply]
[top]
|