chriseppstein / pywebmvc

A MVC Web Framework written in python for use with mod_python. It's designed in the spirit of struts.

chris (author)
Sat Mar 24 09:42:58 -0700 2007
pywebmvc / uninstall
100755 12 lines (10 sloc) 0.185 kb
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
 
SCRIPT="import sys
for p in sys.path:
if p.endswith('site-packages'):
print p
break
"
SITEPKGS=`python -c "$SCRIPT"`
rm -rf $SITEPKGS/pywebmvc
rm -rf /opt/pywebmvc