Re: Missing python27.dll on Win 7 64-bit
Hi! In my Win è 64 bits, python27.dll (and others DLLs like pythoncom27.dll, pythoncomloader27.dll or pywintypes27.dll) are in C:\Windows\SysWOW64 And (my) Python 2.7.2 run perfectly. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Python 2.7 and cmd on Windows 7 64 (files lost)
Hi! (sorry for my bad english...) On Win 7 64 bits: Command-Line CD \Python27 dir C:\Windows\System32\SoundRecorder.exe:==> OK Python.exe >>> import os >>> os.system("dir C:\\Windows\\System32\\SoundRecorder.exe") ==> Do not found the file !!! and os.system("cmd /k") then "dir C:\Windows\System32\SoundRecorder.exe" do not found anyway. But: {Ctrl-Z} in Python then dir C:\Windows\System32\SoundRecorder.exe run OK Therefore, is the problem only in Python? @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Python 2.7 and cmd on Windows 7 64 (files lost)
Re ! > This is because 32-bit processes (Python, 32-bit cmd) cannot see the > 64-bit DLLs in System32. Thanks. You are right... but it is not enought. This command: echo %PROCESSOR_ARCHITECTURE% give the statut: 32: x86 64: AMD64 and DIR C:\Windows\System32\SoundRecorder.exe is OK in 64, not in 32. But if, in 64 mode, I copy SoundRecorder.exe to sr.exe, then I rename sr.exe to sr.txt, the file (which is not an executable) is not visible in 32 mode. And, if I move (or copy) sr.txt in an USB-drive, the file become visible in 32 mode !!!??? Therefore, Windows has a "trick" for mark the file like visible, or not, in 32 mode. What trick? OK, it is not a Python problem. Then... thanks again for your explanations. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: windows 7 create directory with read write execute permission for everybody
Hi! +1 Gelonida confuses "Windows permissions" and "NTFS's rights". (too) Many Windows users are unfamiliar with Windows. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Implicit initialization is EXCELLENT
Hi! +1 @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: how to create a virtual printer
Hi! On windows, install a "Generic" printer, on "FILE:" port. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: ctypes and twain_32.dll
Hi! On my system, thera are not "twain32.dll" or "twain_32.dll", but "twain.dll" @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: PIL: The _imaging C module is not installed
Hi! > you need to install the appropriate libraries, among which are: > libjpeg-devel > freetype-devel > libpng-devel OK, but where can I find it? I want use PIL with Python under Windows, and I can't compile C's sources. Should I replace PIL by ImageMagick? @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: PIL: The _imaging C module is not installed
Re! And why the problem no exist with PIL 1.1.6? (only 1.1.7) Is that the version 1.1.6 does not use these libraries? @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: pyWin build 216
Hi! Me, because some bugs in 216, I come back to 214... (215 has another bugs). @-salutations -- MCi -- http://mail.python.org/mailman/listinfo/python-list
Re: Connecting to Python COM server from Excel VBA does not work
Hi ! Warning with lower/uppercases! Try to make two versions of your methods (ex.: "add" & "ADD"), for study. @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: read text file byte by byte
Hi! > If it's a binary file... OK, but... what is a "binary" file? @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Ironpython
Hi! IronPython is an implementation of Python. IMO, this group talk about all Pythons. Therefore, for me, this group is OK. -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Portable way to tell if a process is still alive
Hi! For Windows, you can use the command-line tasklist Example: tasklist tasklist /FI "IMAGENAME eq iexplore.exe" tasklist /FI "PID eq 4044" /FO LIST The last line is for known PID. Prior for search by (exe's) name. Note than STATUS give if the process is RUNNING / NOT RESPONDING / etc. And...tasklist /? for help. @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Dynamic HTML controls
Hi! I had write PLUIE, for use DHTML as GUI: http://www.ponx.org/ponx/guie.htm But it is not a good answer to your problem. Sorry. Nevertheless, there are several functions & methods for generate DHTML objects (and Python keep the control on each object. @+ -- Michel Claveau *** sorry for my bad english -- http://mail.python.org/mailman/listinfo/python-list
Re: web sound recording with python
Hi! On windows, you can record sound who play on the local sound-card. It is not really Python scripting, but Python can launch it. @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: virtualenv under Win7: easy_install fails in virtual environments
Hi! Try to unactive UAC... @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: how to close not response win32 IE com interface
Hi! The only way I know is to use sendkeys. @+ Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: ANN: Urwid 0.9.9 - Console UI Library
Hi! You forget to write "urwid" do not run under Windows. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: ANN: Urwid 0.9.9 - Console UI Library
Hi! You forget to write "urwid" do not run under Windows. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: ANN: Urwid 0.9.9 - Console UI Library
Hi! You forget to write "urwid" do not run under Windows. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: (pywin related) pywintypes.com_error: -2147417846 "Application busy"
Hi! Your computer is too slow, for launch Excel. Configure the machine for more speed... @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: What's Going on between Python and win7?
Hi! > Symbolic links are available in NTFS starting with Windows Vista. No. Hardlink come with NTFS, and already exists in W2K (and NT with specifics utilities). @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: python shell crashing on paste
Hi! Where (directory) are you, when the problem come? Have you try with UAC disabled? @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: bypass UAC control through python script (to be run from batchfile)
Hi ! Install a resident soff (script) by task-planified, in Administrator rights. Then, call this script from current work, for bypass UAC. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: subprocess only good for win32?
Hi! > side-by-side configuration is incorrect Others have given you an explanation. A possibility: you use a DLL directly, without having installed. That is OK with some DLL, and no OK with others DLL. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: How to open html page in python resource file? ActiveX and Javascript addEventListener? Options
Hello! You will find (positive) answers in PyWin32 and his examples. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: How do I get the URL of the active tab in Firefox/IE/Chrome?
Hello! > The "InternetExplorer.Application" automation object doesn't contain > any way to manipulate tabs directly False. Try this example: import win32com.client for instance in win32com.client.Dispatch('{9BA05972-F6A8-11CF-A442-00A0C90A8F39}'): print instance," URL :",instance.LocationURL @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Printing RTF file under win32
Hi! Try this line: "C:\Program Files\Windows NT\Accessories\wordpad.exe" /p D:\data\fil.rtf (change the path if you have a windows 64 bits) @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Python 32-bit on Windows 64-bit
Hi! Python 32 bits (& Pywin32) limits are: 2 GB on win.7_32 bits 4 GB on win.7_64 bits That's what I found in my tests. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Pickle compatibility between Python 2.7 and python 3.2
Hi! I am, also, very interested in the answers. Thank you for asking this question. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Download Visual Studio Express 2008 now
Hi! Thanks for this idea. Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: DLLs loading in interpreter but not with direct run on Windows
Hi! AMHA (IMO), it is PyQT4 who change the DLL loader... @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Default if none
Hi! > print x or y or z > If none of the potential values are considered boolean false But : a=None b=False c=None print a or b or c > None @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Default if none
Re! Look also : >>> print False or None None >>> print None or False False -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Upgrade Python 2.6.4 to 2.6.5
Hi! If you are under Vista, or Windows 7, have you unactivate UAC, before the update? @+ MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Discover PyH
Bonsoir ! La démarche me semble intéressante. Je testerai le module quand j'aurai un peu de temps. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Problem PIL-1.1.7 & _imagingft
Hi! With PIL-1.1.7.win32-py2.6 and Windows 7, I have this traceback: raise ImportError("The _imagingft C module is not installed") ImportError: The _imagingft C module is not installed I tested "import _imaging" and several other things, without success. If I re-install PIL-1.1.6 all run OK. I found a solution: - install PIL-1.1.7, - then, copy these two files from PIL 1.1.6: _imaging.pyd & _imagingft.pyd But, is it a good way? Thanks -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Access lotus notes using Python 2.5.1
Hi! In several cases, Notes is not registred as COM server. Depending of installation. @-salutations -- MCi -- http://mail.python.org/mailman/listinfo/python-list
Re: Iterative vs. Recursive coding
Salut ! C'est cela, la solitude du programmeur génial... @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Detect string has non-ASCII chars without checking each char?
Hi! Another way : # -*- coding: utf-8 -*- import unicodedata def test_ascii(struni): strasc=unicodedata.normalize('NFD', struni).encode('ascii','replace') if len(struni)==len(strasc): return True else: return False print test_ascii(u"abcde") print test_ascii(u"abcdê") @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Detect string has non-ASCII chars without checking each char?
Re ! > Try your code with u"abcd\xa1" ... it says it's ASCII. Ah? in my computer, it say "False" @-salutations -- MCi -- http://mail.python.org/mailman/listinfo/python-list
Re: python way to automate IE8's File Download dialog
Hi! Suppose that the (web) site give the file only after several seconds, and after the user click a confirm (example: RapidFile). Suppose that the (web) site give the file only after the user input a code, controled by a javascript script. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: is there python image lib that does imagemagick?
Hi! On Windows, you can drive (manage?) ImageMagick from Python, via COM. See: http://www.imagemagick.org/script/api.php#com+ @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Running a script from a windows right click menu..?
Bonsoir ! Un exemple là: http://www.mclaveau.com/grimoire/bleu.html#999 @-salutations -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Does python have the capability for driver development ?
Hi! > Python is interpreted No. Python is compiled (--> .pyc) But the term "to compile" is not always unambiguous... And the notion of "compiler" is not attached to Python (the language), but is attached to the implementation. @+ MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: os.path.exists() and Samba shares
Hi! > SAMBA is a Linux implementation of the SMB protocol, natively supported on > Windows. Right. But, with Vista or Seven, only recents releases of Samba are supported. And, Samba know only NTLM release 2 (in register: HKLM\SYSTEM\CurrentControlSet\Control\Lsa value LMCompatibilityLevel ; set 1 or 0. ) @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Windows 7 : any problems installing or running Python ?
Hi! I use, all days, Python 2.6 + Pywin32 on Win-7-64 bits. Without problem (I confirm : pywin 32 on 64 bits). @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Python or ActionScript 3.0
Hi! > Python doesn't run in your typical web browser Yes, Python can do it... on Windows. Two (examples) ways: - ActiveScripting (PythonScript), include in PyWin32 - Gestalt (who mix Python, Ruby & Javascript, via Silverlight) And alse, these two solutions run OK in HTA (HTml Application) for use HTML as GUI tool in local applications. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Python- javascript
Hi! If you are under Windows, you can drive IE, for indirect drive the web-pages. In this case, you can then interact with pages & the javascript's scripts included. For more, see Pywin32, Pamie, Pxie, etc. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: difference between 2 arrays
(envoyé via news:\\news.wanadoo.fr\comp.lang.python) Hi! See the module "sets" @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: difference between 2 arrays
Re ! Juste pour signaler qu'il existe un newsgroup en français sur Python, qui permet de recevoir des réponses en français (donc plus complètes/détaillées). @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: difference between 2 arrays
(envoyé via news:\\news.wanadoo.fr\comp.lang.python) Hi! Yes, the module sets is written, in doc, like "deprecated". But: - sets exist in Python 2.6 (& 2.5 or 2.4) - documentation of sets (module) is better tha, documentation of set (builtin) The best: read the documentaion of the module, and use the builtin... @-salutations -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Learning Python advanced features
Bonsoir ! Tu aurais peut-être dû répondre en anglais (pour certains, "advanced features", c'est mieux que "concepts sophistiqués"). @+ MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Support for Windows 7 ?
Bonjour ! Plusieurs points : - Python (ainsi que Pywin32) fonctionne TRÈS bien sous Windows-7 (je l'utilise depuis plus d'un an, sur Win-7 beta, RC, RTM, en 32 bits et en 64 bits). Résultats : AUCUN problème. - Il existe des sources françaises (newsgroups, sites, forums, etc.) qui peuvent répondre aussi bien sur Python, que les newsgroups américains. Du coup, j'ai envie de déduire : - Que certains étudiants d'écoles de commerce françaises préfèrent travailler avec "l'étranger" plutôt qu'avec "le français". - Il faudra dire à d'autres étudiants d'écoles de commerce françaises que le fait de ne pas arriver/savoir installer et tester Python sous Windows-7 donne une mauvaise image de l'école... @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Does python 3.1 support sybase module?
Hi, What is this final comma? @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Looking for a pure Python chart drawing module
Hi! Perso I use a wrapper to RMCHART. There are two versions : DLL & COM. I prefer COM. Warning : only on Windows's family. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Looking for a pure Python chart drawing module
Hi! > Tkinter is part of the Python standard library Yes. But... tkinter is a wrapper to tcl/tk, who is written in tcl. Ok, tcl is given with Python (standard library). Therefore, you sentence: 'Are you really ruling out its use for a "pure Python" solution?' Is well done... ;-) Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Redirect output on script
Hi! import os os.system('cmd /c type L:\\source.fic >L:\\destination.txt') @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: arrays in python
Hi! See: http://docs.python.org/tutorial (section 5) @+ -- MCI -- http://mail.python.org/mailman/listinfo/python-list
Re: Python Editor or IDE ActiveX control
Hi! Scintilla come like a "control" (a piece for a window), raleted to the file SciLexer.DLL For call the scintilla-componant, use "messages". Example : SendMessage(Sci, SCI_GOTOLINE, line, 0) For the constant SCI_GOTOLINE, I suggest scintillacon.py, include in Pywin32. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Installing Python as Scripting Language in IIS
Hi! You must register Python as ActiveScripting's language. See : C:\Python26\Lib\site-packages\win32comext\axscript @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: Installing Python as Scripting Language in IIS
Re ! More details: C:\Python26\Lib\site-packages\win32comext\axscript\Demos\client\ie\demo.htm @+ -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: SendKeys and Python 2.7
Hi! Example for send ^V (with PyWin32): import time,win32api,win32con win32api.keybd_event(win32con.VK_CONTROL, 0, 0, 0) win32api.keybd_event(ord('V'), 0, win32con.KEYEVENTF_EXTENDEDKEY | 0, 0) time.sleep(0.05) win32api.keybd_event(ord('V'), 0, win32con.KEYEVENTF_EXTENDEDKEY | win32con.KEYEVENTF_KEYUP, 0) win32api.keybd_event(win32con.VK_CONTROL, 0, win32con.KEYEVENTF_KEYUP, 0) @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
PIL : "The _imaging C module is not installed"
Hello! (*** sorry for my bad english***) I have the message (title), but only with PIL 1.1.7 (Windows XP, Vista or 7 (32 bits or 64 bits)). I tried: _imaging.pyd exist in C:\Python26\Lib\site-packages\PIL OK python -v >>> import Image OK sys.path contain C:\Python26\Lib\site-packages\PIL OK python >>> import _imaging OK I tested on more than 6 computers, with new installations, or update installations. Same problem. Same problem, also, with Python 2.6 or Python 2.7 If I install again PIL 1.1.6, all scripts run OK. Then, I install again PIL 1.1.7, the problem returns. It is the only thing than I wait before update to Python 2.7 One idea? Thanks in advance. -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: SendKeys and Python 2.7
Re! Sorry for time, but I am very busy... With Python + Pywin32, you can force the activation of a window (before send some keys...) See: win32gui.SetForegroundWindow(w_handle) or win32gui.SetActiveWindow(w_handle) For to find a windows (and his handle), see: win32gui.EnumWindows() win32gui.GetWindowTex() or win32gui.FindWindowEx() @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: compile Py2.6 on SL
Hello! SL (SilverLight) is a library/techno who give functions. You cannot compile Python on SL (SilverLight). @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: How to display unicode char in Windows
Hi! 1) the good syntax is: # -*- coding: latin-1 -*- print "**" oo = "ö" print "char=<%s>" % oo print "**" 2) in the console (commandLine), use this command: CHCP 1252 {Enter} (before run your script) @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list
Re: How to display unicode char in Windows
Hi! > "cp65001" isn't in Python's encoding tables. CP65001 is an alias for (partial) UTF-8 @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list