Question

I am running the below python script.

import cgi
import os
import time
import sys
import yate

print(yate.start_response('text/plain'))
addr=os.environ['REMOTE_ADDR']
host=os.environ['REMOTE_HOST']
method=os.environ['REQUEST_METHOD']
cur_time=time.asctime(time.localtime())
print(host+","+addr+","+cur_time+":"+method+":",end='',file=sys.stderr)

and i am getting the below error.

    addr=os.environ['REMOTE_ADDR']
  File "C:\Python33\lib\os.py", line 676, in __getitem__
    raise KeyError(key) from None
KeyError: 'REMOTE_ADDR'

Please help on this....

Was it helpful?

Solution

Your script is supposed to be run as a CGI script by a web-server, which sets environment variables like REMOTE_ADDR, REQUEST_METHOD, etc.

You are running the script by yourself, and these environment variables are not available. That's why you get the KeyError.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top