Urgent Question Please

2016-03-26 Thread sanaaabdullah21
Hi Python developers, I am trying to click on the testInstance button using pywinauto but I couldn't do it, even it returns empty list when I try to print the controllers . Here is what I tried: app = application.Application() app=app.Connect(path = r"C:\\hdmt\\tos_2.5.2.0_release\\tosrelease\\b

Re: question please

2013-07-05 Thread Dave Angel
On 07/05/2013 03:48 AM, bill papanastasiou wrote: hello , good morning how i can pùt one python file in website ? Whose website? If it's your own, log into the server, and use cp. Or if you're remote with ssh access, use scp. And if you really have a bunch of files to remotely transfer, u

Re: question please

2013-07-05 Thread Steven D'Aprano
On Fri, 05 Jul 2013 09:48:09 +0200, bill papanastasiou wrote: > hello , good morning > > how i can pùt one python file in website ? The same way you would put any other file in a website. Can you be more specific? What website do you want to put it on? Is it your website or somebody else's?

question please

2013-07-05 Thread bill papanastasiou
hello , good morning how i can pùt one python file in website ? -- http://mail.python.org/mailman/listinfo/python-list

Re: newbie with a encoding question, please help

2010-04-01 Thread Mister Yu
On Apr 1, 9:31 pm, Stefan Behnel wrote: > Mister Yu, 01.04.2010 14:26: > > > On Apr 1, 8:13 pm, Chris Rebert wrote: > >> gb2312_bytes = ''.join([chr(ord(c)) for c in u'\xd6\xd0\xce\xc4']) > >> unicode_string = gb2312_bytes.decode('gb2312') > >> utf8_bytes = unicode_string.encode('utf-8') #as you w

Re: newbie with a encoding question, please help

2010-04-01 Thread Stefan Behnel
Mister Yu, 01.04.2010 14:26: On Apr 1, 8:13 pm, Chris Rebert wrote: gb2312_bytes = ''.join([chr(ord(c)) for c in u'\xd6\xd0\xce\xc4']) unicode_string = gb2312_bytes.decode('gb2312') utf8_bytes = unicode_string.encode('utf-8') #as you wanted Simplifying this hack a bit: gb2312_bytes = u'\x

Re: newbie with a encoding question, please help

2010-04-01 Thread Mister Yu
On Apr 1, 8:13 pm, Chris Rebert wrote: > On Thu, Apr 1, 2010 at 4:38 AM, Mister Yu wrote: > > On Apr 1, 7:22 pm, Chris Rebert wrote: > >> 2010/4/1 Mister Yu : > >> > hi experts, > > >> > i m new to python, i m writing crawlers to extract data from some > >> > chinese websites, and i run into a e

Re: newbie with a encoding question, please help

2010-04-01 Thread Stefan Behnel
Mister Yu, 01.04.2010 13:38: i m still not very sure how to convert a unicode object ** u'\xd6\xd0\xce\xc4 ** back to "中文" the string it supposed to be? You are confused. '\xd6\xd0\xce\xc4' is an encoded byte string, not a unicode string. The fact that you have it stored in a unicode string

Re: newbie with a encoding question, please help

2010-04-01 Thread Chris Rebert
On Thu, Apr 1, 2010 at 4:38 AM, Mister Yu wrote: > On Apr 1, 7:22 pm, Chris Rebert wrote: >> 2010/4/1 Mister Yu : >> > hi experts, >> >> > i m new to python, i m writing crawlers to extract data from some >> > chinese websites, and i run into a encoding problem. >> >> > i have a unicode object, w

Re: newbie with a encoding question, please help

2010-04-01 Thread Mister Yu
On Apr 1, 7:22 pm, Chris Rebert wrote: > 2010/4/1 Mister Yu : > > > hi experts, > > > i m new to python, i m writing crawlers to extract data from some > > chinese websites, and i run into a encoding problem. > > > i have a unicode object, which looks like this u'\xd6\xd0\xce\xc4' > > which is enc

Re: newbie with a encoding question, please help

2010-04-01 Thread Chris Rebert
2010/4/1 Mister Yu : > hi experts, > > i m new to python, i m writing crawlers to extract data from some > chinese websites, and i run into a encoding problem. > > i have a unicode object, which looks like this u'\xd6\xd0\xce\xc4' > which is encoded in "gb2312", No! Instances of type 'unicode' (i.

newbie with a encoding question, please help

2010-04-01 Thread Mister Yu
hi experts, i m new to python, i m writing crawlers to extract data from some chinese websites, and i run into a encoding problem. i have a unicode object, which looks like this u'\xd6\xd0\xce\xc4' which is encoded in "gb2312", but i have no idea of how to convert it back to utf-8 to re-create t

Re: a popen question. Please help

2009-08-31 Thread Aahz
In article , Tim Chase wrote: > >Darn "standards" :-/ The wonderful thing about standards is that there are so many to choose from. -- Aahz (a...@pythoncraft.com) <*> http://www.pythoncraft.com/ "I support family values -- Addams family values" --www.nancybuttons.com -- http

Re:a popen question. Please help

2009-08-30 Thread ivanko . rus
First, I think you should use subprocess.Popen (it's recommended by PEP-324) instead of os.popen. For example: p = subprocess.Popen(["top"], stdout = PIPE) p.stdout.readlines() And to write to stdin (in your case "q") you can use p.stdin.write("q"), or terminate the process with p.terminate(

Re: a popen question. Please help

2009-08-30 Thread Tim Chase
os.popen('top -n1').readlines() Hm, interesting. On Mac OS X's (and BSD's?) top, -n instead specifies the number of processes to list at a time (i.e. list only the top N processes), which is entirely different. [reaching over to my Mac] Looks like "top" there supports a -l parameter which do

Re: a popen question. Please help

2009-08-30 Thread Chris Rebert
On Sun, Aug 30, 2009 at 4:43 AM, Tim Chase wrote: >> texts = os.popen('top').readlines() >> print texts >> >> It calls the command line "top" and will print out some texts. >> But first I have to press the keyboard "q" to quit the subprocess "top", >> then the texts will be printed, otherwise it ju

Re: a popen question. Please help

2009-08-30 Thread Tim Chase
texts = os.popen('top').readlines() print texts It calls the command line "top" and will print out some texts. But first I have to press the keyboard "q" to quit the subprocess "top", then the texts will be printed, otherwise it just stands by with blank. Question is. Do you know how to give "q

a popen question. Please help

2009-08-30 Thread Joni Lee
Hi all, I write a small script texts = os.popen('top').readlines() print texts It calls the command line "top" and will print out some texts. But first I have to press the keyboard "q" to quit the subprocess "top", then the texts will be printed, otherwise it just stands by with blank. Questio

Re: Yet another database question, please

2007-11-30 Thread Bruno Desthuilliers
nmp a écrit : > Bruno Desthuilliers wrote: > > [..] > >> About DB access, there are two major APIs : the official (low-level - >> that is,relatively to the other one...) db-api, and the higher-level >> SQLAlchemy package. Note that while having an ORM part, SQLAlchemy is >> first an higher-level

OT: Dovetail (was "Re: Yet another database question, please")

2007-11-30 Thread Tim Chase
>> and what Dabo does dovetails nicely. > > Dovetails? > > Sorry, English is not my native language ;) A carpentry term where two pieces of wood are formed to fit together to create the joint: http://images.google.com/images?q=dovetail Used metaphorically to mean "as if they were meant to fit

Re: Yet another database question, please

2007-11-30 Thread Bruno Desthuilliers
nmp a écrit : > Bruno Desthuilliers wrote: > >> nmp a écrit : >>> Hello to all. I am only just learning both Python and PyGTK (with >>> Glade). I also need to learn how to use databases in my programs. My >>> preliminary research leads me in the direction of SQLAlchemy, which >>> seems to be what

Re: Yet another database question, please

2007-11-30 Thread Peter Decker
On Nov 30, 2007 9:20 AM, <[EMAIL PROTECTED]> wrote: > > On Nov 30, 7:23 am, nmp <[EMAIL PROTECTED]> wrote: > > Hello to all. I am only just learning both Python and PyGTK (with Glade). > > I also need to learn how to use databases in my programs. My preliminary > > research leads me in the directi

Re: Yet another database question, please

2007-11-30 Thread kyosohma
On Nov 30, 7:23 am, nmp <[EMAIL PROTECTED]> wrote: > Hello to all. I am only just learning both Python and PyGTK (with Glade). > I also need to learn how to use databases in my programs. My preliminary > research leads me in the direction of SQLAlchemy, which seems to be what > everybody else is us

Re: Yet another database question, please

2007-11-30 Thread Bruno Desthuilliers
nmp a écrit : > Hello to all. I am only just learning both Python and PyGTK (with Glade). > I also need to learn how to use databases in my programs. My preliminary > research leads me in the direction of SQLAlchemy, which seems to be what > everybody else is using. Since it's not quite clear

Urgent: Embedding Python question please

2005-06-22 Thread adsheehan
Hi, I am embedding Python into a multi-threaded C++ application runnig on Solaris and need urgent clarification on the embedding architecture and its correct usage (as I am experience weird behaviors). Can anyone clarify: - if Python correctly supports multiple sub-interpreters (Py_NewInterprete