Python cgi and stdin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:31:15Z http://stackoverflow.com/feeds/question/838991 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/838991/python-cgi-and-stdin 0 Python cgi and stdin Ash 2009-05-08T09:26:34Z 2009-05-08T10:29:15Z <p>I'm using pycurl to upload a file via put and python cgi script to receive the file on the server side. Essentially, the code on the server side is:</p> <pre><code>while True: next = sys.stdin.read(4096) if not next: break #.... write the buffer </code></pre> <p>This seems to work with text, but not binary files (I'm on windows). With binary files, the loop doing stdin.read breaks after receiving anything around 10kb to 100kb. Any ideas?</p> http://stackoverflow.com/questions/838991/python-cgi-and-stdin/839009#839009 2 Answer by RichieHindle for Python cgi and stdin RichieHindle 2009-05-08T09:30:14Z 2009-05-08T10:29:15Z <p>You need to run Python in binary mode. Change your CGI script from:</p> <pre><code>#!C:/Python25/python.exe </code></pre> <p>or whatever it says to:</p> <pre><code>#!C:/Python25/python.exe -u </code></pre> <p>Or you can do it programmatically like this:</p> <pre><code>msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY) </code></pre> <p>before starting to read from <code>stdin</code>.</p> http://stackoverflow.com/questions/838991/python-cgi-and-stdin/839163#839163 0 Answer by S.Lott for Python cgi and stdin S.Lott 2009-05-08T10:15:11Z 2009-05-08T10:15:11Z <p>Use <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> instead of cgi. It will provide you an input file for the upload that's correctly opened.</p>