Python cgi and stdin - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T19:31:15Zhttp://stackoverflow.com/feeds/question/838991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/838991/python-cgi-and-stdin0Python cgi and stdinAsh2009-05-08T09:26:34Z2009-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#8390092Answer by RichieHindle for Python cgi and stdinRichieHindle2009-05-08T09:30:14Z2009-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#8391630Answer by S.Lott for Python cgi and stdinS.Lott2009-05-08T10:15:11Z2009-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>