Problema na DLL

2018-09-22 Thread Allan Sobrero
Olá, estou tendo problemas para executar o Python, baixei a versão 64 bit pois nas configurações de meu computador mostra 64x, porém na hora de executar diz que não tenho o api-ms-win-crt-runtime-l1-1-0.dll -- https://mail.python.org/mailman/listinfo/python-list

Fwd: Re: Error 0*80070570

2016-04-21 Thread Allan Leo
I need help with this setup error. -- Forwarded message -- From: "Allan Leo" Date: Apr 21, 2016 10:06 AM Subject: Re: Error 0*80070570 To: Cc: When running the setup for your 3.5.1(32-bit version), the setup experiences error 0*80070570 and tells me to check the log

Re: Error 0*80070570

2016-04-21 Thread Allan Leo
When running the setup for your 3.5.1(32-bit version), the setup experiences error 0*80070570 and tells me to check the log file. What could be the problem and whats the solution. On Apr 21, 2016 7:05 AM, "Allan Leo" wrote: > When running the setup for your 3.5.1(32-bit versi

Re: Teaching Python

2011-04-19 Thread Allan Davis
How about this. http://inventwithpython.com/ thanks, Allan On Tue, Apr 19, 2011 at 7:35 PM, geremy condra wrote: > On Tue, Apr 19, 2011 at 4:24 PM, Dan Stromberg > wrote: > > On Tue, Apr 19, 2011 at 4:03 PM, geremy condra > wrote: > >> On Tue, Apr 19, 2011 at

Re: [jython] Problem with an huge dictionary

2010-05-17 Thread Allan Davis
KeoBox, Can i look at the jython file you are executing? the ClassFormatException is not with the size of the dictionary. Jython is failing on an import. thanks, -- Allan Davis Member of NetBeans Dream Team http://wiki.netbeans.org

Re: RELEASED Python 2.6.5

2010-03-23 Thread Allan Davis
I just downloaded the installer and tested it on my win xp machine. The installer worked fine. -- Allan Davis Member of NetBeans Dream Team http://wiki.netbeans.org/NetBeansDreamTeam Lead Developer, nbPython http://wiki.netbeans.org

Re: How to tell if you're running on windows?

2009-12-04 Thread Allan Davis
Try this import sys import os sep = None if sys.platform == 'cygwin': sep = ';' else: sep = os.pathsep # then use sep in your path statment Hope this helps Thanks, ------ Allan Davis Member of NetB

Re: can python do this?

2009-12-02 Thread Allan Davis
Try your distribution of linux package management tool. You will find PIL there -- Allan Davis Member of NetBeans Dream Team http://wiki.netbeans.org/NetBeansDreamTeam Lead Developer, nbPython http://wiki.netbeans.org/Python http

recording input from USB port and write to text file

2009-08-18 Thread Allan
Hi! I'm fairly new to Python. I understand the basics basics but I'm been trying to write a simple python code that will let me read input data (such as mouse movement) from my USB port and write it in a text file and I am so lost. Can anyone help or direct me to some resources? Thank you! -- h

New to python

2009-08-17 Thread Allan Fong
Hi! I'm fairly new to Python. I understand the basics basics but I'm been trying to write a simple python code that will let me read input data from my USB drive and write it in a text file and I am so lost. Can anyone help or direct me to some resources? Thank you! -- http://mail.python.org/ma

Form/Template Fill-in the blanks

2009-07-25 Thread allan
completely new EDI document. I'm stuck at this fusing together thing. Is this a good approach? Is there an easier to implement approach? Comments, suggestions, questions please. Allan -- http://mail.python.org/mailman/listinfo/python-list

Re: Your confirmation is required to join the Python-list mailing list

2009-05-04 Thread Allan Yuan
Hi, I just wanna know how to set SYSTEM variables and USER variables of windows, but got no way. Firstly I thought "os.environ + os.system" may work well, but found no way to let "os.environ" run to retrive USER variables. Then I tried win32api, finding the GetEnvironmentVariables() mixing SYSTEM

Re: Unbuffered mode

2008-02-13 Thread Hamish Allan
fatal, but otherwise nothing is executed until EOF. So the answer to my question is to run: $ ssh localhost python -ui Best wishes, Hamish On Feb 13, 2008 4:20 PM, Hamish Allan <[EMAIL PROTECTED]> wrote: > Further to my query about trying to make Python run unbuffered, I have > discove

Re: Unbuffered mode

2008-02-13 Thread Hamish Allan
rror) does not: $ ssh localhost python -u pront [^D] Traceback (most recent call last): File "", line 1, in NameError: name 'pront' is not defined $ Can anyone tell me why?! Thanks, Hamish On Feb 13, 2008 1:12 AM, Hamish Allan <[EMAIL PROTECTED]> wrote: > Hi, &g

Unbuffered mode

2008-02-12 Thread Hamish Allan
Hi, The man page for python says: "-u Force stdin, stdout and stderr to be totally unbuffered." However, when I try: $ ssh localhost python -u print 'hello, world' [^D] hello, world $ Nothing happens until I send that EOF. I'm pretty sure it's not SSH that's buffering because when I try:

Automatic login to website (newbie)

2007-10-19 Thread Allan Pedersen, Profilm
Did you ever find a solution for this? if so i would like to hear about it... :-) Regards Allan Pedersen, Denmark -- http://mail.python.org/mailman/listinfo/python-list

Python string.title Function

2006-04-11 Thread Allan
ck on this issue is much appreciated. Thanks much, Allan -- http://mail.python.org/mailman/listinfo/python-list

how do I factor a number down to one digit?

2006-02-27 Thread Allan
I'm trying to write a numerology program where I have each letter identified by a numerical value like a=1 b=2 c=3 as so forth. I then input a name. How do I treat each letter as a single value? That is, instead of print myname I have to do a print m+y+n+a+m+e which returns a number. I next want to

Re: sockets

2006-01-20 Thread Allan Zhang
> >> the following code works perfectly >> import socket, sys >> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) >> s.connect(("www.python.org", 80)) >> s.send("GET") here, You need to speak HTTP protocol. I would suggest to change s.send( "GET / HTTP/1.0\x0d\x0a\x0d\x0a" ) >> whi

Re: Parsing files -- pyparsing to the rescue?

2006-01-16 Thread Allan Zhang
Try this code = import re p = re.compile(r'([^<]*)<') s = open("file").read() m = re.search(p, s) if m: res = m.groups()[0] res = res.lstrip("\n") res = res.rstrip("\n") print res result: === %python parser.py Sys Data Sys-Data asdkData Da

Re: anaconda.real in RH7.1

2005-09-07 Thread Allan Adler
Allan Adler <[EMAIL PROTECTED]> writes: > I'm trying to reinstall RedHat 7.1 Linux on a PC that was disabled when > I tried to upgrade from RH7.1 [] > The file anaconda.real is invoked with the line > exec /usr/bin/anaconda.real -T "$@" > I don'

anaconda.real in RH7.1

2005-09-02 Thread Allan Adler
tra) = isys.getopt(theargs, 'GTRxtdr:fm:', ['gui','text','reconfig','xmode','test','debug','nofallback', 'method=','rootpath=',... Anyway, in a nutshell, whenever I see anyt

If you use PayPal you might consider an alternative

2005-05-02 Thread Allan
If you used PayPal and are not satisifed with their service there is a new and better service opening. They will be starting up during the early summer this year. The best of all - signup is FREE. Check out their benefits: www.greenzap.com/benefits -- http://mail.python.org/mailman/listinfo/pyt

need some help quickly

2004-12-14 Thread Allan Irvine
HI Hope this is the right place for this, I am new. I have a spec to create a (dual screen) framework application that 1 displays mp3, flash, jpegs etc. on top screen 2: displays buttons on bottom screen which alter image when a key is pressed. The hardware is a dell pc basically, no mouse and t

Looking for a coder to do some work

2004-12-13 Thread Allan Irvine
HI > > Hope this is the right place for this, I am new. I have a spec to create > a (dual screen) framework application that > > 1 displays mp3, flash, jpegs etc. on top screen > 2: displays buttons on bottom screen which alter image when a key is > pressed. > > The hardware is a dell pc basically,