active questions tagged python+windows - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:12:38Z http://stackoverflow.com/feeds/tag/python+windows http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805852/how-can-i-use-sqlite-with-django-on-windows-7 0 How can I use SQLITE with DJANGO on WIndows 7 REA_ANDREW 2009-11-26T21:57:31Z 2009-11-26T22:17:36Z <p>I am following the tutorial on the DJango site, which I previsouly did using Windows XP and everything went fine, but on Windows 7 I get the following error:</p> <pre><code>sqlite3.OperationalError: unable to open database file </code></pre> <p>I use the following:</p> <pre><code>python manage.py sql Blog </code></pre> <p>Does any one have any ideas what might be wrong. The database file is located in <code>C:\Software\Sqlite\Databases\Blog.db</code></p> <p>And the relative settings.py or section of is simply:</p> <pre><code>DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_NAME = 'C:\Software\Sqlite\databases\blog.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with </code></pre> <p>I have also for testing purposes added everyone with full permissions.</p> <p>But as I say I get the following error:</p> <pre><code>sqlite3.OperationalError: unable to open database file </code></pre> <p>Any help is appreciated,</p> <p>Andrew</p> http://stackoverflow.com/questions/1803675/communicate-with-a-process-in-utf-8-on-a-cp1252-consoless 0 communicate with a process in utf-8 on a cp1252 consoless Mapad 2009-11-26T13:31:19Z 2009-11-26T14:09:43Z <p>I need to control a program by sending commands in utf-8 encoding to its standard input. For this I run the program using <code>subprocess.Popen()</code>:</p> <pre><code>proc = Popen("myexecutable.exe", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE) proc.stdin.write(u'ééé'.encode('utf_8')) </code></pre> <p>If I run this from a cygwin utf-8 console, it works. If I run it from a windows console (encoding ='cp1252') this doesn't work. Is there a way to make this work without having to install a cygwin utf-8 console on each computer I want it to run from ? (NB: I don't need to output anything to console)</p> http://stackoverflow.com/questions/1787497/how-to-print-out-encoded-asian-charactersgb2312-on-command-prompt 0 How to print out encoded Asian characters(gb2312) on command prompt? Michael Mao 2009-11-24T02:57:25Z 2009-11-24T04:40:50Z <p>Hi all:</p> <p>I am working for a company that uses the Python programming language version 3.1 as a causal work now. And I've encountered this problem: how to print out some encoded Asian characters(Chinese, Japanese, Korean) on command prompt?</p> <p>Done a bit research and tried, but got no luck:</p> <pre><code>import sys import codecs print(sys.getdefaultencoding()) # prints out UTF-8 fileObj = codecs.open("test.txt", "r", "eucgb2312_cn") content = fileObj.read() print(content) </code></pre> <p>It is the last line that would cause this error:</p> <pre><code>C:\Documents and Settings\Michael Mao\Desktop&gt;test.py utf-8 Traceback (most recent call last): File "C:\Documents and Settings\Michael Mao\Desktop\test.py", line 6, in &lt;module&gt; print(u) File "C:\tools\Python31\lib\encodings\cp437.py", line 19, in encode return codecs.charmap_encode(input,self.errors,encoding_map)[0] UnicodeEncodeError: 'charmap' codec can't encode character '\u5377' in position 3: character maps to &lt; undefined &gt; </code></pre> <p>I cannot change the default encoding from UTF-8 to anything else, so I reckon that is the problem preventing the output from being rendered correctly.</p> <p>Can anyone help me out in this? Thanks a lot in advance!</p> http://stackoverflow.com/questions/1782680/distribute-a-python-program-with-a-minimal-environment 2 Distribute a Python program with a minimal environment. X-Blaster 2009-11-23T11:52:41Z 2009-11-23T17:00:53Z <p>I want to distribute a Python application to windows users who don't have Python or the correct Python version.</p> <p>I have tried py2exe conversion but my Python program is really complex and involve code import on the fly by xmlrpc process so it is not suitable for py2exe.</p> <p>The complete Python folder takes around 80MB but this includes docs and a lot of non-essential things. </p> <p>Do you know if there exists a small package of a minimal Python interpreter I can include with my program ? Include a folder of 80MB is a bit big ;)</p> http://stackoverflow.com/questions/1779630/python-programs-coexisting-on-windows 1 Python programs coexisting on Windows rwallace 2009-11-22T19:02:39Z 2009-11-23T16:45:34Z <p>I'm looking for a way to let multiple Python programs coexist on the same Windows machine.</p> <p>Here's the problem: suppose program A needs Python 2.5, B needs 2.6, C needs 3, and each of them needs its own version of Qt, Wx or whatever other modules or whatever.</p> <p>Trying to install all these dependencies on the same machine will break things, e.g. you can install different versions of Python side-by-side but only one of them can have the .py file association, so if you give that to Python 2.5 then B and C won't work, etc.</p> <p>The ideal state of affairs would be if program A could live in C:\A along with its own Python interpreter, Qt/Wx/MySQL driver/whatever and never touch anything outside that directory, ditto for B and C.</p> <p>Is there any way to accomplish this, other than going the full virtual box route?</p> <p>edit: I tried the batch file solution, but it doesn't work. That is, it works on simple test scripts but e.g. OpenRPG fails at some point in its loading process if its required version of Python doesn't own the file association.</p> http://stackoverflow.com/questions/1771200/python-detect-usb-drive-then-assign-drive-letter 3 Python detect USB drive then assign drive letter? Dunwitch 2009-11-20T15:26:03Z 2009-11-21T12:43:36Z <p>Here is the problem. We have 100s of external 500gb USB drives. Each drive will travel to a new location through the year. What is the best way to automatically detect that a USB drive has been plugged into a Windows system, then assign a Z:\ drive letter? These USB drives will be plugged into lots of different computers so a script like this</p> <pre><code>import subprocess diskpart_data = "z-drive.txt" open (diskpart_data, "w").write (""" select volume F: assign letter=Z """) subprocess.call ('diskpart /s %s' % diskpart_data) </code></pre> <p>is hard to use due to the dynamic nature of the mobile USB drive on different Windows systems all the time? Could you autodetect through WMI or do some kind of volume mount with NTFS?</p> http://stackoverflow.com/questions/1774384/how-can-i-program-software-using-python-for-linux-windows 2 How can I program software using Python for Linux/Windows? Papuccino1 2009-11-21T03:20:23Z 2009-11-21T04:18:57Z <p>For example, using C# I can make software fairly easily for Windows.</p> <p>I downloaded Python but all I get is a terminal like window for executing single lines of code.</p> <p>Is there a free IDE/Visual editor for designing GUI's in conjunction with Python?</p> <p>Thank SO. :D</p> http://stackoverflow.com/questions/1767575/are-there-any-libraries-for-python-to-simulate-keyboard-action 1 Are there any libraries for Python to simulate keyboard action? Yinan 2009-11-20T00:24:03Z 2009-11-20T22:31:30Z <p>The problem I have is that I have this Python script to launch a application. After the application is launched (the GUI is shown on screen), I want to make it de-activated. It can be done manually by activating another window, or minimizing this app, or pressing the Show Desktop key for WindowsXP.</p> <p>So is there any way that I can do this by Python? Core or 3rd party library would be all ok.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1771765/collecting-usage-data-for-a-desktop-application 1 Collecting usage data for a desktop application lfaraone 2009-11-20T16:50:47Z 2009-11-20T17:03:47Z <p>Hi,</p> <p>I'm going to be running some large scale usability tests of my software for a science project. We have a lab of about 30 computers running Windows XP. Our application is written in <a href="http://python.org" rel="nofollow">Python</a> and <a href="http://pygtk.org" rel="nofollow">PyGTK</a>. </p> <p>We want to be able to collect the following without staff intervention (automatically on our application start):</p> <ul> <li>A recording of the user session (a la <a href="http://recordmydesktop.sf.net" rel="nofollow">GtkRecordMyDesktop</a>)</li> <li>All tracebacks and errors produced by our application</li> <li>Amount of time till the user reaches a certain point in the application. </li> <li>A short survey presented at application exit</li> </ul> <p>I think the last point is pretty straightforward, and I know how I'd store the data, but I don't know how I'd implement the other points. </p> http://stackoverflow.com/questions/1648631/watching-sockets-on-windows-puts-them-in-non-blocking-mode 0 Watching sockets on Windows puts them in non-blocking mode Anacrolix 2009-10-30T08:36:02Z 2009-11-20T10:56:08Z <p>The following code does not work correctly on Windows (but does on Linux):</p> <pre><code> sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.setblocking(True) sock.connect(address) gobject.io_add_watch( sock.fileno(), gobject.IO_OUT | gobject.IO_ERR | gobject.IO_HUP, callback) </code></pre> <p>Snippets of comments in various places in the glib source, and other places mention that in Windows, sockets are put in non-blocking mode during polling. As a result the callback <code>self.outgoing_cb</code> is constantly called, and writing to the socket fails with this error message:</p> <pre><code>[Errno 10035] A non-blocking socket operation could not be completed immediately </code></pre> <p>Calling <code>sock.setblocking(True)</code> prior to writing does not seem to circumvent this. By lowering the priority of the polling, and ignoring the error message, it works as expected, but throws far to many events, and consumes a lot of CPU. Is there a way around this limitation in Windows?</p> <p><strong>Update</strong></p> <p>I might point out, that the whole point of polling for <code>POLLOUT</code> is that when you make the write call you won't get <code>EAGAIN</code>/<code>EWOULDBLOCK</code>. The strange error message that I'm getting, I believe would be the Windows equivalent of those 2 error codes. In other words, I'm getting <code>gobject.IO_OUT</code> events when the socket will not let me write successfully, <strong>and</strong> putting it into blocking mode still gives me this inappropriate error.</p> <p><strong>Another update</strong></p> <p>On Linux, where this works correctly, the socket is not switched to non-blocking mode, and I receive <code>IO_OUT</code>, when the socket will let me write without blocking, or throwing an error. It's this functionality I want to best emulate/restore under Windows.</p> <p><strong>Further notes</strong></p> <p>From <code>man poll</code>:</p> <pre><code> poll() performs a similar task to select(2): it waits for one of a set of file descriptors to become ready to perform I/O. POLLOUT Writing now will not block. </code></pre> <p>From <code>man select</code>:</p> <pre><code>A file descriptor is considered ready if it is possible to perform the corre‐ sponding I/O operation (e.g., read(2)) without blocking. </code></pre> http://stackoverflow.com/questions/1749001/problem-with-named-pipes-between-c-and-python 0 Problem with Named Pipes between C# and Python Mehdi Asgari 2009-11-17T13:48:02Z 2009-11-18T11:48:00Z <p>I'm trying to create a two-way communication channel between two programs (one in Python and another in C#)</p> <p>When I create a named pipe between two C# programs or two Python programs, everything is OK, but when I try to (for example) connect to the C# server from Python code, it does not work:</p> <p>C# code:</p> <pre><code>NamedPipeServerStream server = new NamedPipeServerStream("Demo", PipeDirection.InOut,100,PipeTransmissionMode.Byte,PipeOptions.None,4096,4096) </code></pre> <ol> <li><p>If I use win32pipe in Python, code blocks on ConnectNamedPipe (it never returns)</p> <p>p = win32pipe.CreateNamedPipe( r'\.\pipe\Demo', win32pipe.PIPE_ACCESS_DUPLEX, win32pipe.PIPE_TYPE_BYTE | win32pipe.PIPE_WAIT, 1, 65536, 65536, 300, None) win32pipe.ConnectNamedPipe(p)</p></li> <li><p>If I use open function, it just establishes a connection, but nothing occurs:</p> <p>open( '\\.\pipe\Demo', 'r+b' )</p> <p>Now if I close the Python program, C# server receives just one data item from Python and a System.IO.IOException raises with "Pipe is broken" message</p></li> </ol> <p>Am I doing anything wrong ? </p> http://stackoverflow.com/questions/832331/launch-a-webpage-on-a-firefox-win-tab-using-python 1 Launch a webpage on a Firefox (win) tab using Python Leandro Ardissone 2009-05-06T23:52:20Z 2009-11-17T16:17:59Z <p>Hi,</p> <p>I'm trying to launch a website url in a new tab using python in that way, but it didn't worked in these both ways:</p> <p>Method 1:</p> <pre><code>os.system('C:\Program Files\Mozilla Firefox\Firefox.exe -new-tab http://www.google.com/'); </code></pre> <p>and Method 2:</p> <pre><code>os.startfile('C:\Program Files\Mozilla Firefox\Firefox.exe -new-tab http://www.google.com/'); </code></pre> <p>If I don't add the parameters (-new-tab <a href="http://www.google.com/" rel="nofollow">http://www.google.com/</a>) it works, opening the default page.</p> http://stackoverflow.com/questions/1749762/python-c-redirected-stdout-fires-errno-9 0 Python, C: redirected stdout fires [Errno 9] EcirH 2009-11-17T15:44:29Z 2009-11-17T15:50:37Z <p>I try to log all the output of a program written in Python and C. However, printing from Python causes <code>IOError: [Errno 9] Bad file descriptor</code></p> <p>Please, does anyone know what the problem is and how to fix it?</p> <p>PS: It's on Windows XP, Python 2.6 and MinGW GCC</p> <pre><code>#include &lt;windows.h> #include &lt;fcntl.h> #include "Python.h" int main() { int fds[2]; _pipe(fds, 1024, O_BINARY); _dup2(fds[1], 1); setvbuf(stdout, NULL, _IONBF, 0); /* alternative version: */ // HANDLE hReadPipe, hWritePipe; // int fd; // DWORD nr; // CreatePipe(&hReadPipe, &hWritePipe, NULL, 0); // fd = _open_osfhandle((intptr_t)hWritePipe, _O_BINARY); // _dup2(fd, 1); // setvbuf(stdout, NULL, _IONBF, 0); write(1, "write\n", 6); printf("printf\n"); Py_Initialize(); PyRun_SimpleString("print 'print'"); // this breaks Py_Finalize(); char buffer[1024]; fprintf(stderr, "buffer size: %d\n", read(fds[0], buffer, 1024)); // should always be more than 0 /* alternative version: */ // CloseHandle(hWritePipe); // char buffer[1024]; // ReadFile(hReadPipe, buffer, 1024, &nr, NULL); // fprintf(stderr, "buffer size: %d\n", nr); // should always be more than 0 } </code></pre> http://stackoverflow.com/questions/1748958/unable-to-unpickle-a-file-on-mac-that-was-pickled-on-windows 1 Unable to unpickle a file on Mac that was pickled on Windows Lee 2009-11-17T13:40:30Z 2009-11-17T13:47:27Z <p>Hello,</p> <p>I've got a simple class that I am pickling(dumping) to a file. On OS X this works fine, and on Windows this works fine.</p> <p>However, while on windows I can load/unpickle the object fine - when windows then pickles this file and saves it back to disk, it becomes unreadable on OS X (although in Windows it still behaves as normal).</p> <p>The error I get back from OS X is that it is unable to import the require class.</p> <p>I'm confused as this all works fine as long as I don't pickle anything in windows! (Even then it still works fine in Windows)</p> <p>I've heard it could be line endings, my other thoughts are possibly something to do with the encoding type used being different across operating systems? But I really have no idea what to try to fully diagnose and/or solve this problem, so any help would be appreciated!</p> http://stackoverflow.com/questions/309412/how-to-setup-setuptools-for-python-2-6-on-windows 34 How to setup setuptools for python 2.6 on Windows? corvuscorax 2008-11-21T16:44:44Z 2009-11-16T05:56:23Z <p>Is there any way to install setuptools for python 2.6 in Windows without having an .exe installer? </p> <p>There isn't one built at the moment, and the maintainer of setuptools has stated that it's probable be a while before he'll get to it. </p> <p>Does anyone know of a way to install it anyway?</p> http://stackoverflow.com/questions/646955/how-to-tell-whether-a-file-is-executable-on-windows-in-python 4 How to tell whether a file is executable on Windows in Python? J.F. Sebastian 2009-03-14T23:48:40Z 2009-11-15T21:29:10Z <p>I'm writing <a href="http://gist.github.com/79233" rel="nofollow"><code>grepath</code></a> utility that finds executables in <code>%PATH%</code> that match a pattern. I need to define whether given filename in the path is executable (emphasis is on command line scripts).</p> <p>Based on <a href="http://timgolden.me.uk/python/win32%5Fhow%5Fdo%5Fi/tell-if-a-file-is-executable.html" rel="nofollow">"Tell if a file is executable"</a> I've got:</p> <pre><code>import os from pywintypes import error from win32api import FindExecutable, GetLongPathName def is_executable_win(path): try: _, executable = FindExecutable(path) ext = lambda p: os.path.splitext(p)[1].lower() if (ext(path) == ext(executable) # reject *.cmd~, *.bat~ cases and samefile(GetLongPathName(executable), path)): return True # path is a document with assoc. check whether it has extension # from %PATHEXT% pathexts = os.environ.get('PATHEXT', '').split(os.pathsep) return any(ext(path) == e.lower() for e in pathexts) except error: return None # not an exe or a document with assoc. </code></pre> <p>Where <code>samefile</code> is:</p> <pre><code>try: samefile = os.path.samefile except AttributeError: def samefile(path1, path2): rp = lambda p: os.path.realpath(os.path.normcase(p)) return rp(path1) == rp(path2) </code></pre> <p>How <code>is_executable_win</code> could be improved in the given context? What functions from Win32 API could help?</p> <p>P.S.</p> <ul> <li>time performance doesn't matter</li> <li><code>subst</code> drives and UNC, unicode paths are not under consideration</li> <li>C++ answer is OK if it uses functions available on Windows XP</li> </ul> <h3>Examples</h3> <ul> <li><code>notepad.exe</code> is executable (as a rule)</li> <li><p><code>which.py</code> is executable if it is associated with some executable (e.g., python.exe) and <code>.PY</code> is in <code>%PATHEXT%</code> i.e., <code>'C:\&gt; which'</code> could start:</p> <pre><code>some\path\python.exe another\path\in\PATH\which.py </code></pre></li> <li><p><code>somefile.doc</code> most probably is <em>not</em> executable (when it is associated with Word for example)</p></li> <li><code>another_file.txt</code> is <em>not</em> executable (as a rule)</li> <li><code>ack.pl</code> is executable if it is associated with some executable (most probably perl.exe) and <code>.PL</code> is in <code>%PATHEXT%</code> (i.e. I can run <code>ack</code> without specifing extension if it is in the path)</li> </ul> <h3>What is "executable" in this question</h3> <pre><code>def is_executable_win_destructive(path): #NOTE: it assumes `path` &lt;-&gt; `barename` for the sake of example barename = os.path.splitext(os.path.basename(path))[0] p = Popen(barename, stdout=PIPE, stderr=PIPE, shell=True) stdout, stderr = p.communicate() return p.poll() != 1 or stdout != '' or stderr != error_message(barename) </code></pre> <p>Where <code>error_message()</code> depends on language. English version is:</p> <pre><code>def error_message(barename): return "'%(barename)s' is not recognized as an internal" \ " or external\r\ncommand, operable program or batch file.\r\n" \ % dict(barename=barename) </code></pre> <p>If <code>is_executable_win_destructive()</code> returns when it defines whether the path points to an executable for the purpose of this question.</p> <p>Example:</p> <pre><code>&gt;&gt;&gt; path = r"c:\docs\somefile.doc" &gt;&gt;&gt; barename = "somefile" </code></pre> <p>After that it executes %COMSPEC% (cmd.exe by default):</p> <pre><code>c:\cwd&gt; cmd.exe /c somefile </code></pre> <p>If output looks like this:</p> <pre> 'somefile' is not recognized as an internal or external command, operable program or batch file. </pre> <p>Then the <code>path</code> is not an executable else it is (lets assume there is one-to-one correspondence between <code>path</code> and <code>barename</code> for the sake of example).</p> <p>Another example:</p> <pre><code>&gt;&gt;&gt; path = r'c:\bin\grepath.py' &gt;&gt;&gt; barename = 'grepath' </code></pre> <p>If <code>.PY</code> in <code>%PATHEXT%</code> and <code>c:\bin</code> is in <code>%PATH%</code> then:</p> <pre><code>c:\docs&gt; grepath Usage: grepath.py [options] PATTERN grepath.py [options] -e PATTERN grepath.py: error: incorrect number of arguments </code></pre> <p>The above output is not equal to <code>error_message(barename)</code> therefore <code>'c:\bin\grepath.py'</code> is an "executable".</p> <p>So the question is how to find out whether the <code>path</code> will produce the error without actually running it? What Win32 API function and what conditions used to trigger the 'is not recognized as an internal..' error?</p> http://stackoverflow.com/questions/51658/cross-platform-space-remaining-on-volume-using-python 5 Cross-platform space remaining on volume using python Justin Waddell 2008-09-09T11:36:39Z 2009-11-13T09:22:14Z <p>I need a way to determine the space remaining on a disk volume using python on linux, Windows and OS X. I'm currently parsing the output of the various system calls (df, dir) to accomplish this - is there a better way?</p> http://stackoverflow.com/questions/1720077/on-windows-in-python-possibly-using-the-outlook-api-how-can-i-get-the-full-name 0 On Windows in python, possibly using the Outlook API, how can I get the full name of a user from their smaller login name? Ross Rogers 2009-11-12T05:27:38Z 2009-11-13T03:51:26Z <p>At work, we have short login names, e.g. <code>hastingsg</code>, but Outlook and I believe other parts of the Windows system also have access to a longer name, e.g. Jeff Hastings.</p> <p>In cpython (not IronPython), if I have the shorter login name, how can I get the longer full name? I have <a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">pywin32</a> and <a href="http://support.microsoft.com/kb/945835" rel="nofollow">ExchangeCDO</a> installed.</p> http://stackoverflow.com/questions/1707323/python-app-to-exe-not-working-on-winsrv2003 1 python app to exe not working on WinSRV2003 MichalKlich 2009-11-10T11:33:16Z 2009-11-12T11:36:10Z <p>Hi, </p> <p>I created little app for sending out emails when something is wrong with server. Used py2exe to create exe file. While it is works absolutely fine on Win7 i have problems with running it on WinSRV2003. I do not believe that it has something to do with code itself. Please see imports below</p> <pre><code>import pyodbc, sys, smtplib, os from datetime import date from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.mime.base import MIMEBase import email.iterators import email.generator </code></pre> <p>setup.py file:</p> <pre><code>from distutils.core import setup import py2exe import modulefinder modulefinder.AddPackagePath("mail.mime", "base") modulefinder.AddPackagePath("mail.mime", "multipart") modulefinder.AddPackagePath("mail.mime", "nonmultipart") modulefinder.AddPackagePath("mail.mime", "audio") modulefinder.AddPackagePath("mail.mime", "image") modulefinder.AddPackagePath("mail.mime", "message") modulefinder.AddPackagePath("mail.mime", "application") setup(console=['capfile_tester.py'], options = { "py2exe": { "includes": "decimal, datetime, email" } }) </code></pre> <p>And also one line from py2exe output that might be interesting</p> <blockquote> <p>The following modules appear to be missing ['_scproxy']</p> </blockquote> <p>Error message when trying to start it:</p> <blockquote> <p>This application has failed to start because application configuration is incorrect. Reinstalling the application may fix this problem.</p> </blockquote> <p>What came to my mind is could it missing some registry keys taht would allow app to run?</p> http://stackoverflow.com/questions/1718899/run-a-process-and-quit-without-waiting-for-it 2 Run a process and quit without waiting for it Tomas Sedovic 2009-11-11T23:50:29Z 2009-11-12T02:04:56Z <p>In Python under Windows: I want to run some code in a separate process. And I don't want the parent waiting for it to end. Tried this:</p> <pre><code>from multiprocessing import Process from time import sleep def count_sheeps(number): """Count all them sheeps.""" for sheep in range(number): sleep(1) if __name__ == "__main__": p = Process(target=count_sheeps, args=(5,)) p.start() print("Let's just forget about it and quit here and now.") exit() </code></pre> <p>which starts the child process and continues executing. However, when the parent reaches the end, it still waits for the child to exit.</p> <p>Is there a way of letting the parent quit even when the child is running? Sure, I could just run a new python interpreter using <code>subprocess.Popen</code> and feed to it the sheep-counting as a separate script.</p> <p>Still, there's this whole module for playing with processes of Python code, so I'd like to take advantage of that instead of hacking on the OS. Also, it would be awesome if the same code worked everywhere where Python does, not just on Windows.</p> http://stackoverflow.com/questions/523825/python-ruby-ide-windows 2 Python/Ruby IDE (Windows)? Lee Tang 2009-02-07T14:15:07Z 2009-11-11T14:29:50Z <p>Are there any Windows IDEs that support both Ruby and Python? - I'm talking about the type of IDE that has syntax suggestions. I've tried Netbeans but it only seems to support Ruby (maybe there's a way to add Python support?)</p> http://stackoverflow.com/questions/941470/wxpython-wont-close-frame-with-a-parent-who-is-a-window-handle 1 wxPython won't close Frame with a parent who is a window handle Fry 2009-06-02T19:33:30Z 2009-11-10T21:48:13Z <p>I have a program in Python that gets a window handle via COM from another program (think of the Python program as an addin) I set this window to be the main Python frame's parent so that if the other program minimizes, the python frame will too. The problem is when I go to exit, and try to close or destroy the main frame, the frame.close never completes it's execution (although it does disappear) and the other program refuses to close unless killed with TaskManager.</p> <p>Here are roughly the steps we take:</p> <pre><code>if we are started directly, launch other program if not, we are called from the other program, do nothing enter main function: create new wx.App set other program as frame parent: Get handle via COM create a parent using wx.Window_FromHWND create new frame with handle as parent show frame enter main loop App.onexit: close frame frame = None handle as parent = None handle = None </code></pre> <p>Anybody have any thoughts on this or experience with this sort of thing?</p> <p>I appreciate any help with this!</p> <p>[Edit] This is only the case when I use the handle as a parent, if I just get the handle and close the python program, the other program closes fine</p> http://stackoverflow.com/questions/434597/open-document-with-default-application-in-python 10 Open document with default application in Python Abdullah Jibaly 2009-01-12T06:23:51Z 2009-11-10T17:07:10Z <p>I need to be able to open a document using it's default application in Windows and Mac OS. Basically, I want to do the same thing that happens when you double click on the document icon in Explorer or Finder. What is the best way to do this in Python?</p> http://stackoverflow.com/questions/1706989/setting-up-virtualenv-for-django-development-on-windows 0 setting up virtualenv for django development on windows, dysmsyd 2009-11-10T10:33:43Z 2009-11-10T10:58:45Z <p>Hi,</p> <p>Setting up a virtualenv for the first time, when i try to install MySQL-python using</p> <pre><code>pip -E &lt;&lt;some virtual env&gt;&gt; install MySQL-python </code></pre> <p>i get</p> <pre><code>File "setup_windows.py", line 7, in get_config serverKey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, options['registry_key']) WindowsError: [Error 2] The system cannot find the file specified </code></pre> <p>I guess virtualenv is stopping python from accessising the windows registry somehow, i have tried running easy_install within the virtualenv with no luck (i assume this does exactly the same thing), copying over the site packages dir from my main python install means that yolk will not see it, </p> <p>Does anyone know how i can either cajole this into working, or copy over the files needed for mysql support?</p> <p>Thanks,</p> http://stackoverflow.com/questions/211046/create-an-icon-in-memory-with-win32-in-python 0 Create an icon in memory with win32 in python Claudiu 2008-10-17T04:07:42Z 2009-11-09T03:53:02Z <p>What's a good way to generate an icon in-memory in python? Right now I'm forced to use pygame to draw the icon, then I save it to disk as an .ico file, and then I load it from disk as an ICO resource...</p> <p>Something like this:</p> <pre><code> if os.path.isfile(self.icon): icon_flags = win32con.LR_LOADFROMFILE | win32con.LR_DEFAULTSIZE hicon = win32gui.LoadImage(hinst, self.icon, win32con.IMAGE_ICON, 0, 0, icon_flags) </code></pre> <p>...where self.icon is the filename of the icon I created.</p> <p>Is there any way to do this in memory? EDIT: All I want to do is create an icon with a 2-digit number displayed on it (weather-taskbar style.</p> http://stackoverflow.com/questions/1684995/debugging-the-reading-of-output-of-a-windows-console-app-using-python 0 Debugging the reading of output of a Windows console app using Python Brian 2009-11-06T02:13:26Z 2009-11-06T06:26:21Z <p>This question is very similar to <a href="http://stackoverflow.com/questions/1124884/interact-with-a-windows-console-application-via-python">this one</a>. I want to read output from a console app of mine. The app does not terminate, nor does it take input from stdin.</p> <p>When I modify rix0rrr's solution to execute my app and then run his solution, Python hangs because read(1) does not return. The initial output of the app is "Starting the server.\n". Can you guess what property my app may have that is preventing his solution from working? The extent of my changes is that I changed this:</p> <pre><code>p = Popen( ["cmd.exe"], stdin=PIPE, stdout=PIPE ) prompt = re.compile(r"^C:\\.*&gt;", re.M) </code></pre> <p>to this:</p> <pre><code>p = Popen( ["c:\\path\\to\\my\\app\\app.exe"], stdin=PIPE, stdout=PIPE ) prompt = re.compile(r"Starting", re.M) import pdb;pdb.set_trace() </code></pre> <p>I also created a test version of my app that returns immediately and verified that the output from the app is returned by read() in that case. His original, unmodified example, as expected, also does not hang.</p> <p>I also tried out the ActiveState code that Piotr linked to in his answer. No output is returned from the process in that case, either.</p> <p>This is Python 2.4.4 on Vista.</p> http://stackoverflow.com/questions/1679798/how-to-open-a-file-with-the-standard-application 6 How to open a file with the standard application? gs 2009-11-05T10:59:30Z 2009-11-05T22:46:52Z <p>My application prints a PDF to a temporary file. How can I open that file with the default application in Python?</p> <p>I need a solution for</p> <ul> <li>Windows</li> <li>Linux (Ubuntu with Xfce if there's nothing more general.)</li> </ul> <h3>Related</h3> <ul> <li><a href="http://stackoverflow.com/questions/434597/open-document-with-default-application-in-python">Open document with default application in Python</a></li> </ul> http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows 2 Limitations of TEMP directory in Windows? Benjamin Pollack 2009-11-05T21:39:30Z 2009-11-05T22:20:49Z <p>I have an application written in Python that's writing large amounts of data to the <code>%TEMP%</code> folder. Oddly, every once and awhile, it dies, returning <code>IOError: [Errno 28] No space left on device</code>. The drive has <em>plenty</em> of free space, <code>%TEMP%</code> is not its own partition, I'm an administrator, and the system has no quotas.</p> <p>Does Windows artificially put some types of limits on the data in <code>%TEMP%</code>? If not, any ideas on what could be causing this issue?</p> <p><strong>EDIT</strong>: Following discussions below, I clarified the question to better explain what's going on.</p> http://stackoverflow.com/questions/1666690/editing-windows-registry-from-python-under-linux 0 Editing Windows registry, from Python, Under Linux Aiden Bell 2009-11-03T11:12:24Z 2009-11-03T12:50:19Z <p>Hi All,</p> <p>I am looking for a Python API (or a C API as I am willing to bind) for editing Windows registries from XP to 7 from within a Linux system.</p> <p>The Windows target will be a mounted volume under Linux.</p> <p>I would be willing to code a library if none exists. Therefore, any docs or internals on the registry would be handy too.</p> <p>Any help, much appriciated.</p> http://stackoverflow.com/questions/1662576/running-pythons-idle-in-windows -1 Running Python's IDLE in windows cool-RR 2009-11-02T17:22:42Z 2009-11-02T17:25:56Z <p>I messed up my IDLE shortcut. What is the way to start IDLE from the cmd.exe shell in Windows?</p>