Tagged Questions
0
votes
0answers
13 views
subprocess.Popen can't find file?
I've been following https://github.com/kripken/emscripten/wiki/Using-Emscripten-on-Windows along up to now. When I run the test suite in tests/runner.py, some tests fail with a python error.
...
0
votes
2answers
37 views
Create a python tkinter window with no X (close) button
I'm writing a 'wizard' type Python Tkinter GUI that collects information from the user and then performs several actions based on the user's entries: file copying, DB updates, etc. The processing ...
0
votes
0answers
14 views
running python2.7 with numpy on windows: ok on interactive, fails on script
I've installed WinPython2.7 from http://code.google.com/p/winpython/ (64bit version)
now if I go interactive mode I can do from pylab import * without trouble but if I put that on a script it'll say: ...
-1
votes
1answer
37 views
Error running .py from Windows 7 command prompt
I am new to python and I have just installed python 2.7.3 on Windows. I will also install django so I need to execute a file named ez_setup.py. I know it seems like an easy question and answer can be ...
2
votes
3answers
48 views
File modification times not equal after calling shutil.copystat(file1, file2) under Windows
I run the following code with Python 2.7.5. under Windows:
import os, shutil, stat, time
with open('test.txt', 'w') as f: pass # create an arbitrary file
shutil.copy('test.txt', 'test2.txt') # copy ...
0
votes
0answers
36 views
Use ListBox to operate on a dataset with selectable IDs
Another academic question. I have scripts for many types of plots, and wanted a customizable listbox method that I can call up and use to pass a selected ID from a specified dataset into any plotting ...
0
votes
1answer
47 views
os.path.join generates 4 backslashes per folder
I'm trying to write a function that finds the first instance of a particular file in the current directory and its subfolders, and returns the relative path as a string.
def ...
0
votes
1answer
17 views
Using windows command line to run python script with passing of url argument
I am writing this Python program which extracts some information from a webpage and I am required to run it using the windows command line. But I could not even print the original html page as a ...
0
votes
2answers
39 views
alternative of grep in python running on Windows [duplicate]
I'm extracting the first line that starts with 'abc' in a file
grep -w 'abc' --max-count=1 file.tsv
I wanna use it in a python program
import subprocess
process = subprocess.Popen("grep -w 'abc' ...
0
votes
0answers
34 views
How to configure Python Kivy for PyCharm on Windows?
I'm having trouble getting Kivy to work with PyCharm on Windows 7. I've managed to add most of the external libraries through File > Settings > Python interpreters > Paths Tab.
I'm using the Kivy ...
0
votes
0answers
17 views
move/rename a folder into an existing one on Windows
I've got useless nested folders:
c:\sample\sample\
and want to move everything from "\sample\sample" to "\sample" and delete "sample\sample"
uselessPath = "/sample/sample" ##fake code. the paths ...
0
votes
2answers
29 views
Suppress message: “python.exe has stopped working”
I'm running Python 2.7 with ArcGIS Desktop 10.1 on Windows for Server (2 Xeon 2.13 Ghz processors).
Is it possible to suppress or automatically close the dialogue box from Windows that says ...
0
votes
0answers
45 views
Change Windows Background from Python
Does anyone know a way to change the Windows Desktop Wallpaper with python so that the change is permanent? I have found this code
import ctypes
SPI_SETDESKWALLPAPER = 20
...
0
votes
0answers
38 views
File characters are getting replaced NUL
I have a strange problem with .bat file contents getting replaced with NUL(\x00) char after a reboot.
Steps:
Create a .bat file in startup folder in Windows using a Python script.
Power cycle the ...
4
votes
2answers
57 views
Copy using the Windows copy dialog
I'm currently using shutil.copy2() to copy a large number of image files and folders (anywhere between 0.5 and 5 gigs). Shutil works fine, but it's so slow. I'm wondering if there is a way to pass ...
0
votes
1answer
52 views
How do I start a http server and then open a web browser?
I´m trying this:
import multiprocessing
from wsgiref.simple_server import make_server
import webbrowser
import time
def application(environ, start_response):
start_response("200 OK", ...
1
vote
0answers
22 views
How to customize the CursorSize in Python(x,y)
I'v customized the cmd's CursorSize from Regedit. And it works.
But the CursorSize will be reset after ran Python in CommandLine:
I'v tried to customized the Python's CursorSize in Regedit too, ...
0
votes
1answer
36 views
Trouble installing Turbulenz
I was trying out the HTML5 Game Engine Turbulenz, which requires Python to be installed on the machine. I downloaded and installed Python, and then I downloaded the installer for Turbulenz. In the ...
0
votes
0answers
22 views
Changing queryString values
I have two questions:
Is it possible to make 20130526130000.000000600 and Warning from the line queryString changeable via an argument/input/parameter?
Is it possible to print a blank line in ...
1
vote
1answer
49 views
Install new version over existing on Windows (upgrade)
I have Python 2.7.3 and considering to install new 2.7.5 version, but I can't find information if it's possible to upgrade current (and keep my modules intact) or is it advised to install as separate ...
0
votes
0answers
69 views
Get data from USB using Python
I am not understanding the USB protocol properly and so getting confused with my code to get data about the USB when I add it. I can't figure out where I am going wrong. My system is Windows 8 64 bit.
...
-1
votes
1answer
62 views
why do i get this— > importError: No module named backend.libusb10
my code is to get all details about the device inserted in USB port.
However, when i run the program i get the following error:
ImportError: No module named backend.libusb10
Can someone please ...
0
votes
0answers
31 views
detect multiple USB ports using python code [duplicate]
I have been able to detect whenever a flash drive is inserted. However, (silly as it sounds) having trouble to detect if multiple USB are inserted.I cant get the proper modification in the code fro ...
0
votes
1answer
133 views
how to detect multiple USB ports and read data from USB using python
I have been able to detect whenever a flash drive is inserted. However, (silly as it sounds) having trouble to detect if multiple USB be inserted.
Also, i am having difficulty in writing the code to ...
1
vote
1answer
63 views
How to generate a key hold & press event in Python on Windows
I am trying to make a program so that when I press a button on my gamepad and hold it, a certain character will be written and repeated as long as I hold the button, just as a keyboard works.
Until ...
0
votes
1answer
25 views
When integrating Python how much of the version has to match?
This question is about integrating Python in another program. If I link against Python, I have an import lib named python27.lib or similar (e.g. python26.lib) for earlier 2.x versions. Apparently ...
0
votes
1answer
63 views
Python subprocess directing data to standard intput
I have a C++ program on Windows that reads characters in from standard input. I want to write a Python script that opens this C++ program and then have the script write to the programs standard ...
0
votes
0answers
24 views
How to aborted the python script in windows
I have a python script. When I have run the script from the command prompt in windows7. Now, I have opened the new command prompt and ran the same python script.
When I have ran the second time ...
0
votes
0answers
15 views
How to abort the svndumpfilter process?
I want to abort the process, when svndumpfilter.exe running. Andy idea how to abort that process using python script?
thanks,
0
votes
0answers
29 views
Python 2.7 on Windows, “assert main_name not in sys.modules, main_name” for all multiprocessing examples
There is following simple code:
from multiprocessing import Process, freeze_support
def foo():
print 'hello'
if __name__ == '__main__':
freeze_support()
p = Process(target=foo)
...
0
votes
1answer
56 views
Error using etree in lxml
I want to use xpath in python . I tried
import xml.etree.ElementTree as ET
Since this library has limited usage I had to use lxml after a long session of search on google. I had several problems ...
0
votes
3answers
77 views
Load Python C Extension DLL using System.loadLibrary
I have a Python C Extension DLL with extension pyd, that I would like to load in Java through System.loadLibrary on windows.
It seems that there is no way to load a dll with an extension different ...
0
votes
0answers
45 views
python calg library in windows x64
when i run python in windows 7 for x64,see this
[-]calg library: http://c-algorithms.sourceforge.net
why this and how do i can??
python calg library for w3af in windows x64
any body don't konw?
...
1
vote
1answer
23 views
How to open an exe file in Tkinter window
I am trying to open the applications like notepad,photoshop,etc. inside the Tkinter window in Python. I tried using os.sytem() but it opens independently(not inside Tkinter window).
I had searched a ...
0
votes
0answers
84 views
Trouble building mpi4py OpenMP Windows XP
I'm trying to install mpi4py1.3 on Python 2.7. I use OpenMPI 1.6.4 as MPI provider. It runs under WinXP 32bit.
As I can't use easy_install or pip, I downloaded the tar and tried to install it with the ...
0
votes
0answers
24 views
Tap adapter on windows 7
um trying to create tunnel program using python on windows, here is the steps um following :
1 - i downloaded tun/tap device
2 - using WMI to be able to change the ip address elements
um facing a ...
0
votes
0answers
54 views
Import GST in Python fail in Win8 64bit gstream python
System is Windows 8 64bit.
Python 2.7 32bit.
Have installed:
GStreamer-WinBuilds-GPL-x86-Beta04-0.10.7.msi
GStreamer-WinBuilds-SDK-GPL-x86-Beta04-0.10.7.msi
Gstreamer-sdk-x86-2012.11.msi
But if ...
2
votes
2answers
68 views
How to open folder with specified items selected on Windows
I want to open a folder with specified items selected on Windows. I looked up the the Windows Shell Reference and found a function fit for this job: SHOpenFolderAndSelectItems.
However, I couldn't ...
0
votes
0answers
40 views
Windows service written in python will not start (Command line or manual invocation from windows services)
I am trying to write a windows service that envokes a cherrypy script when run. A skeleton of my code looks like this:
import win32service
import win32serviceutil
import win32api
import win32con
...
0
votes
0answers
19 views
want to change properties of an interface using win32, wmi module
I am using wmi module
x = wmi.WMI().Win32_NetworkAdapterConfiguration(index=9)
// this index for my tap drive
and change properties inside the interface , it doesn't change in the interface out ...
0
votes
1answer
63 views
Unable to send Unicode to SQL Server using pymssql
I'm having issues sending unicode to SQL Server via pymssql:
In [1]: import pymssql
conn = pymssql.connect(host='hostname', user='me', password='password', database='db')
...
0
votes
2answers
63 views
Managing third party modules after upgrading Python
Do we need to re-install all the third party modules if we upgrade to a higher version of Python or is there an easier way out?
0
votes
1answer
47 views
Python2.7 set a given variable to replace one backslash to two backslashes
I'm still new to programming and working on my first python script.
I'm trying to make my python script execute in a way so the user only has to type this:
script.py \\server\location
and not ...
0
votes
2answers
80 views
how to run an exe file with the arguments using python
Suppose I have a file RegressionSystem.exe. I want to execute this executable with a -config argument. The commandline should be like:
RegressionSystem.exe -config filename
I have tried like:
...
1
vote
2answers
37 views
Is there an automatic 'mouse clicking' library that can interact with a GUI?
I am disguising my real project by giving a similar project due to paranoia of getting fired.
I have a task that is the following:
I open a program that is a GUI. This GUI has 3 fields for numbers ...
1
vote
1answer
142 views
Check if an arbitrary user is in Administrator Group with Python
Is there a way to check if any given user is in the Administrator's Group?
I know how to check if the current user is an admin using:
import ctypes
print ctypes.windll.shell32.IsUserAnAdmin()
...
1
vote
1answer
87 views
Can't make django less work on Windows
I am using this library to run lesscss on my django project :
https://github.com/andreyfedoseev/django-less/
It works fine on Mac and Linux but I am getting an error on Windows and can't find a ...
0
votes
1answer
107 views
how to compile libnet for python 2.7 on windows
I have python 2.7 on windows xp, I need libnet but it's not supported for python 2.7 .
I tried to compile it using cygwin, as I don't use python on cygwin gnu and I could not compile it using ...
0
votes
1answer
63 views
How to use pygtk for windows 7/8?
How to use pygtk on windows 7/8? Can I use pygtk to program GUI for windows applications? There are tutorials for linux os but none for windows, would be glad if someone can share.
3
votes
1answer
73 views
Is there an alternative precise timer to time.clock() on Windows?
Running in Windows on some Virtual Machine platforms, Python's time.clock() function is inaccurate.
I did some testing on a few different platforms with the following test script:
import datetime
...








