tags:

views:

23

answers:

1

i want to have session without use web framework

when i execute my code it return blank page i have python 3.1 with apache 2.2

#!c:\Python31\python
print ('Content-Type: text/html\n')
print 

from http import cookies
import os

c = cookies.SimpleCookie()
c["1"]="2"

c2= os.environ.get('HTTP_COOKIE')
c3= c.load(c2)
print (c3)
A: 

can you correct me the error in my code or propose me session writen with cookies otherwise any suggestion for a framework support python 3.1

ossj
This is not an answer. It's not clear what this is. Please delete it.
S.Lott