wanna stop by my homemade glory hole?

2005-10-21 Thread kevin
hi there where are u plz -- http://mail.python.org/mailman/listinfo/python-list

The ONLY thing that prevents me from using Python

2005-08-05 Thread Kevin
I have been using java (jsp/servlets), vb/asp and perl for a few years. Almost all my projects are web site development related, and many of my clients' web sites are hosted on those shared web hosting services. The problem is that it's difficult to find hosting services with Python installed and

Re: The ONLY thing that prevents me from using Python

2005-08-05 Thread Kevin
Thank you all for the messages. I agree with Bill on that I was just whining here. I should do a bit more research. I guess I am just getting accustomed to the endless supplies of asp/php hosting services. All I need to do is shopping for the lowest price/good service. But it's not the case for

PySQLite Table indexing inside a functions

2004-12-02 Thread Kevin
just making 3 fields. Regards, Kevin def PARSE2DB(data,tablename): i = j = k = 0 cadu = GETdb().cursor() FacetNum = len(data [1]) while i < FacetNum: cadu.execute(""" insert into table = 'tab

Re: PySQLite Table indexing inside a functions

2004-12-02 Thread Kevin
values(%f, %f, %f) """, (data [i][0][0], data [i][0][1] ,data[i][0][2]0]) ) i = i + 1 return --- Kevin <[EMAIL PROTECTED]> wrote: > Hello Everyone, > > I'm using PySQLite and would lik

PySQLLite Speed

2004-12-02 Thread Kevin
file reads fine the PC has a utilization of 50% for Python. Then when it starts to write the Database, the PC Util drops to 1-2% and it takes forever. I'm not PC related preformance barriers that I'm aware of. Regards, Kevin OS : Windows PySQLLite

PySQLLite Speed

2004-12-02 Thread Kevin
l. Thanks, Kevin db.execute("begin") while i < TriNum db.execute("""insert into TABLE(V1_x) values(%f),""" (data[i])) i = i + 1 db.execute("commit") __

Re: Problems with Tkinter

2006-01-01 Thread Kevin
Try: fenster.title("Demofenster") "title" a class method, not a variable. Kevin. "Steffen Mutter" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all and a happy new year! > > My first try fiddling around with GUIs ended disappoint

How can I determine an HTTPMessage ?

2006-01-11 Thread Kevin
Can you tell me what to look for in an HTTPMessage that is an error? I have looked at the header objects and I cannot determine an error message. -- http://mail.python.org/mailman/listinfo/python-list

Re: two questions about thread

2006-01-15 Thread Kevin
The best way to do this is by using a flag or event that the child-threads monitor each loop (or multiple times per loop if it's a long loop). If the flag is set, they exit themselves. The parent thread only has to set the flag to cause the children to die. Kevin. "Bryan Olso

Re: Placing graphics & text on printed page - jan06call.jpg (0/1)

2006-01-15 Thread Kevin
or doing ICC is available also on my site at: http://www.cazabon.com/pyCMS/ Kevin Cazabon. "Michael Galvin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am trying to use Python to send to the printer a calender filled > with a mix of text and simple graphics.

Re: How can I determine an HTTPMessage ?

2006-01-19 Thread Kevin
Thanks, I was trying to get it to work with urllib instead of urllib2. The code below works. Thanks. import urllib2 as myurl url = "some url" try: myurl.urlopen(url) print "Redirecting to %s\n" % url return url except: print "An invalid login_query was spec

Re: Problem of Readability of Python

2007-10-10 Thread Kevin
Am I missing something, or am I the only one who explicitly declares structs in python? For example: FileObject = { "filename" : None, "path" : None, } fobj = FileObject.copy() fobj["filename"] = "passwd" fobj["path"] = "

Using Timing function problem.....

2007-01-24 Thread kevin
Hi... I'm having a few problems here... I want to input in my function different values and then time each one to see how long it took to run the function... so right now it doesn't like the "i" inside my function fibonacci(i) but if I put a constant it's fine any idea on how to approach this?

Fwd: [PyQt] Popen + poll & pid

2008-03-08 Thread Kevin
Hi, I sent the question below to the wrong list. I was wondering if someone here could help? Kevin Sent from my iPhone Begin forwarded message: From: Kevin <[EMAIL PROTECTED]> Date: March 8, 2008 11:53:39 AM PST To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> Subjec

Re: driver detective crack keygen

2008-05-31 Thread kevin
Hi i was wondering if you did find a keygen or crack for driver detective if so could you please help me in my serach for the same . kevin -- http://mail.python.org/mailman/listinfo/python-list

Problem with smtplib and py2exe

2008-04-07 Thread Kevin
Hi everyone, I'm running Python 2.5.1 on an XP-Pro platform, with all the updates (SP2, etc) installed. I have a program (send_file.py) that sends a file to a service provider, using an ftp connection. The program works properly, and I've created an 'exe' of it, using py2exe. It was distrubuted

Re: Problem with smtplib and py2exe

2008-04-08 Thread Kevin
Thanks, Terry, you pointed me in the right direction with the reference to the "DEBUG". I dug out my "Learning Python" book, to read up on the debugger, and one of the things I came across was a section on IDLE's debugger. It said essentially that if you get an error that doesn't make sense when y

calling another python file within python

2006-03-14 Thread Kevin
i have a python file called pyq which outputs stock quotes, currently i also have a html file that takes stock ticker inputs, i would like to bridge the two by building another program that takes the html inputs and uses them to call the pyq stock ticker program and then output them into a text

Error in compiling Python on OS X

2009-07-26 Thread Kevin
I am trying to compile Python 2.6.2 on Mac OS X 10.5.7. I have Xcode 3.1.3 installed. The error I got is below. $ ./configure --prefix=/Users/me/python checking for --with-universal-archs... 32-bit checking MACHDEP... darwin checking EXTRAPLATDIR... $(PLATMACDIRS) checking machine type as report

Re: Error in compiling Python on OS X

2009-07-27 Thread Kevin
On Jul 26, 3:46 pm, "Diez B. Roggisch" wrote: > Kevin schrieb: > > > I am trying to compile Python 2.6.2 on Mac OS X 10.5.7.  I have Xcode > > 3.1.3 installed. > > > The error I got is below. > > > $ ./configure --prefix=/Users/me/python > &

MySQL Database

2013-05-08 Thread Kevin Holleran
(g,e) = domain.split('.') db_c.execute("UPDATE Users SET g = '" + g + "' WHERE a ='" + row[0]) Will using db_c to update the database mess up the loop that is cycling through db_c.fetchall()? Thanks for your help. Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: MySQL Database

2013-05-08 Thread Kevin Holleran
On Wed, May 8, 2013 at 2:56 PM, Chris Angelico wrote: > On Thu, May 9, 2013 at 4:52 AM, Kevin Holleran wrote: > > Will using db_c to update the database mess up the loop that is cycling > > through db_c.fetchall()? > > Nope; fetchall() returns a list, which you're then

Re: MySQL Database

2013-05-08 Thread Kevin Holleran
Thanks, I actually intend to, was just whipping something up to be an example for my question. -- Kevin Holleran Master of Science, Computer Information Systems Grand Valley State University Master of Business Administration Western Michigan University GCFA, GCFE, CCNA, ISA, MCSA, MCDST, MCP

Re: how to run another file inside current file?

2013-05-18 Thread Kevin Xi
he-exec-statement HTH Kevin 2013/5/18 Avnesh Shakya > hi, >I want to run a another file inside a ached.add_cron_job(..). how is it > possible, please help me, I have a file otherFile.py for execution inside > current file. > I know it is

Re: Future standard GUI library

2013-05-18 Thread Kevin Walzer
ature, stable, and unlikely to undergo radical change in the future. Guilherme Polo has done superb work in integrating the themed widgets into Python--it's the most significant UI advance in Python's stdlib in years. You are quite safe in developing against this API, unless your

Re: Future standard GUI library

2013-05-19 Thread Kevin Walzer
ctual knowledge, of course. I have two commercial apps developed with Tkinter: http://www.codebykevin.com/phynchronicity.html http://www.codebykevin.com/quickwho.html --Kevin -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com --

Re: any cherypy powred sites I can check out?

2013-05-19 Thread Kevin Walzer
"Johannes Falcone." The common thread of his recent postings are subjects posed as questions, usually about various web frameworks, sometimes without even a single line in the message body. On the Tcl list it's AOLServer and NavServer. I'm not familiar with the Perl frameworks he

Re: Future standard GUI library

2013-05-20 Thread Kevin Walzer
On 5/20/13 1:04 AM, Vito De Tullio wrote: FLTK? (http://www.fltk.org/index.php) FLTK is even uglier than non-themed Tkinter: non-native on every platform. Tkinter wraps native widgets on MacOS and WIndows, but FLTK draws its own widgets everywhere. -- Kevin Walzer Code by Kevin/Mobile Code

Re: Newbie question about evaluating raw_input() responses

2013-05-21 Thread Kevin Xi
ut` to get an integer directly. Read this: http://docs.python.org/2/library/functions.html#raw_input http://docs.python.org/2/library/functions.html#input Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie question about evaluating raw_input() responses

2013-05-22 Thread Kevin Xi
Oh yes, you guys are right. Thank you very much for warning me that. On Thursday, May 23, 2013 6:31:04 AM UTC+8, Alister wrote: > > as Chris A point out it executes user input an can cause major damage > > (reformatting the hard disk is not impossible!) > It definitely can cause major damage

Re: Re-using copyrighted code

2013-06-09 Thread Kevin Walzer
Here is info about him: http://effbot.org/zone/about.htm His contact info is listed here: http://www.pythonware.com/company/contact.htm I have trouble believing there would be any issue with you re-using the code, especially since it is included with Python's stdlib. --Kevin -- Kevin W

Re: Problem creating a regular expression to parse open-iscsi, iscsiadm output (help?)

2013-06-13 Thread Kevin LaTona
ething about re.VERBOSE... Snip With the following code tweaks in Python 2.7.2, I find it works with VERBOSE for me, but not without. I would say the regex could still use some more adjustments yet. -Kevin import re inp =""" Target: iqn.1992-04.com.emc:vplex-00

Re: Problem creating a regular expression to parse open-iscsi, iscsiadm output (help?)

2013-06-14 Thread Kevin LaTona
On Jun 13, 2013, at 7:42 AM, Kevin LaTona wrote: > With the following code tweaks in Python 2.7.2, I find it works with VERBOSE > for me, but not without. Sorry had a small bleep while writing that last line this AM. Of course the regex pattern would work in VERBOSE mode as that was

Re: Having a hard time to 'get' bing api search results

2013-06-14 Thread Kevin LaTona
a possible option. http://docs.python-requests.org/en/latest/ -Kevin On Jun 13, 2013, at 2:31 PM, Yves S. Garret wrote: > This is the format that I've been following: > http://gavinmhackeling.com/blog/2012/05/using-the-bing-search-api-in-python/ > > If I execute the specified q

Re: Having a hard time to 'get' bing api search results

2013-06-14 Thread Kevin LaTona
I did a quick test with url lib instead of urllib2 and got closer. Problem right now is without ID code I can't check any further. But it does look promising at this point. If all else fails http://docs.python.org/2/library/urllib.html#examples import urllib f = urllib.urlopen('https://use

Re: Having a hard time to 'get' bing api search results

2013-06-14 Thread Kevin LaTona
Your welcome. To be honest I am not 100% on the differences between. I could be off, but I recall urllib2 was a more refined version of urllib. Yet it seems like urllib works better for me, when I need to do a simple call like this. -Kevin On Jun 13, 2013, at 3:50 PM, "Yves S. G

Tonight's meeting + s Database link

2013-06-17 Thread Kevin LaTona
First off what a fun meeting it was tonight with a great conversation. Let's do more of them. Next this is the link to that JSON Database I mentioned but could not recall the name on. http://www.rethinkdb.com/ RethinkDB overview RethinkDB is built to store JSON documents, and scale to

Re: Tonight's meeting + s Database link -- Sorry

2013-06-17 Thread Kevin LaTona
Sorry all, I managed to send that last email to wrong Python list. -Kevin On Jun 17, 2013, at 10:55 PM, Kevin LaTona wrote: > > > First off what a fun meeting it was tonight with a great conversation. > > Let's do more of them. > > > > Next this is

Re: Stack Overflow moderator “animuson”

2013-07-19 Thread Kevin Walzer
for 7 days. Such a dickwad. Mats And we should care because...? -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Beginner - GUI devlopment in Tkinter - Any IDE with drag and drop feature like Visual Studio?

2013-07-22 Thread Kevin Walzer
On 7/22/13 4:54 AM, Cucole Lee wrote: Why Thinter? You can try wxpython. Well, it's partly a matter of taste, but I for one find wxPython's API...inelegant. -- Kevin Walzer Code by Kevin/Mobile Code by Kevin http://www.codebykevin.com http://www.wtmobilesoftware.c

Re: Simple Python script as SMTP server for outgoing e-mails?

2013-07-22 Thread Kevin Walzer
27;d need is to change the SMTP address in my e-mail client, and off they go. No need for anything else like user authentication or SPAM control. Is there a no-brainer, ready-to-use solution in Python that I could use for this? Thank you. http://www.hmailserver.com -- Kevin Walzer Code by Kevin

Re: Simple Python script as SMTP server for outgoing e-mails?

2013-07-24 Thread Kevin Walzer
On 7/23/13 5:53 PM, Gilles wrote: On Mon, 22 Jul 2013 10:14:15 -0400, Kevin Walzer wrote: http://www.hmailserver.com Thanks. hMailServer was one of the apps I checked, and I was just making sure there weren't something simpler, considering my needs, ideally something like Mongoos

Re: Cross-Platform Python3 Equivalent to notify-send

2013-07-27 Thread Kevin Walzer
On 7/27/13 6:58 AM, Devyn Collier Johnson wrote: Linux systems with the proper software can use the "notify-send" command. Is there a cross-platform Python3 equivalent? Mahalo, Devyn Collier Johnson devyncjohn...@gmail.com http://pythonhosted.org/gntp/ ? -- Kevin Walzer Code by Ke

Re: how to package embedded python?

2013-07-29 Thread Kevin Walzer
n installed, as most of my users won't have it. is it actually a requirement that they first install python? (cuz it does work then) Have you looked at these docs? http://docs.python.org/2/extending/embedding.html Lots of other hits on Google for ""embedding Python in C app.&q

unittest - sort cases to be run

2012-08-21 Thread Kevin Zhang
Hi all, I want to sort the order of the unittest cases to be run, but found such statement in Python doc, "Note that the order in which the various test cases will be run is determined by sorting the test function names with respect to the built-in ordering for strings." s.addTest(BTest())

Re: Tkinter bug in Entry widgets on OS X

2012-08-31 Thread Kevin Walzer
ab bar for that, not the arrow key. The entry widget is a single-line widget, and doesn't have up/down as the text widget does. -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter bug in Entry widgets on OS X

2012-08-31 Thread Kevin Walzer
art of the interface, they need to use the tab key, not the arrow key. It's not a multi-line text widget and shouldn't be expected to work like one. -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading a file in IDLE 3 on Mac-Lion

2012-09-23 Thread Kevin Walzer
passed to it, cf. py and txt files. "dat" isn't recognized, I tested it out. There's nothing to do here; it's an aspect of the native dialog. -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading a file in IDLE 3 on Mac-Lion

2012-09-23 Thread Kevin Walzer
On 9/23/12 8:45 AM, Kevin Walzer wrote: There's nothing to do here; it's an aspect of the native dialog. To clarify: there's nothing to do at the C level, which is where the native dialog is invoked. IDLE can probably be patched to accept other file types, such as "dat

Re: Article on the future of Python

2012-09-25 Thread Kevin Walzer
me kind of Python wrapper that I can access in my Tkinter app. I can understand loving the language and wanting to work just in the language, but it's another thing entirely to call Python the One Language to Rule Them All. (That's C, because all other languages are implemented in i

Re: Article on the future of Python

2012-09-26 Thread Kevin Walzer
ython have that would raise them above the level of interesting experiments? -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Compairing filenames in a list

2012-09-29 Thread Kevin Anthony
I have a list of filenames, and i need to find files with the same name, different extensions, and split that into tuples. does anyone have any suggestions on an easy way to do this that isn't O(n^2)? -- Thanks Kevin Anthony www.NoSideRacing.com Do you use Banshee? Download the Comm

Re: IDLE Crashing in Mac OS 10.8.2 with 2.7.3

2012-10-09 Thread Kevin Walzer
e one from ActiveState or the one bundled with OS X? -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

__setitem__ without position

2012-10-11 Thread Kevin Anthony
I have a class that contains a list of items I can set items using __setitem__ but if i want to set the while list, i changes the variable from a myclass to a list. How can i accomblish this Example >>>C = myclass() >>>C[0] = 57 >>>type(C) myclass >>> C = [57,58,59,60] >>>type(C) list -- http://m

Re: __setitem__ without position

2012-10-11 Thread Kevin Anthony
I'm not supprised... and understand why it's happening. I'm asking how to get around it. Basically i'm asking how to override, if i can, the `=` On Thu, Oct 11, 2012 at 5:32 PM, Dave Angel wrote: > On 10/11/2012 04:48 PM, Kevin Anthony wrote: > > I have a class

list comprehension question

2012-10-16 Thread Kevin Anthony
if product else self.__matrix[m][p]* other.__matrix[p][n]) for p in range(0,self.col) for n in range(0,self.col)] for m in range(0,self.__row)] But i know that isn't correct, can someone nudge my in the right direction? -- Thanks Kevin Anthony

Re: list comprehension question

2012-10-16 Thread Kevin Anthony
Is it not true that list comprehension is much faster the the for loops? If it is not the correct way of doing this, i appoligize. Like i said, I'm learing list comprehension. Thanks Kevin On Oct 16, 2012 10:14 PM, "Dave Angel" wrote: > On 10/16/2012 09:54 PM, Kevin Antho

Is there a way to programmatically turn on remote registry?

2012-10-19 Thread Kevin Holleran
ntime? Thanks for your help. Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: Is there a way to programmatically turn on remote registry?

2012-10-19 Thread Kevin Holleran
Thanks! I think this is getting me on the right track. Now when I attempt to start the RemoteRegistry service I am getting an exception "The RPC server is unavailable." However, I am done with this for today so back at it on Monday. Thanks for your help. Kevin On Fri, Oct 19, 20

Re: Is there a way to programmatically turn on remote registry?

2012-10-22 Thread Kevin Holleran
need, stop the service, then set it back to disabled Does anyone know if there is a way to do this? Thanks for your help. Kevin On Fri, Oct 19, 2012 at 8:56 PM, Dennis Lee Bieber wrote: > On Fri, 19 Oct 2012 17:19:56 -0400, Kevin Holleran > declaimed the follow

Re: Is there a way to programmatically turn on remote registry?

2012-10-22 Thread Kevin Holleran
Thanks, I will look into that. WMI is enabled, but everything WMI query I wrote (& I am NOT a WMI expert or even close) gave me a bunch of NIC info, but not the info I am after in the registry (driver description, driver date, driver version for the NICs). Thanks for your help. Kevin

Re: Is there a way to programmatically turn on remote registry?

2012-10-22 Thread Kevin Holleran
;Unable to query registry key for NIC adapters" Thanks. I am reviewing the WMI Registry piece you sent over right now. I am certainly open to anyway I can get the info. I have some odd behaviors across some servers during vulnerability scanning & have a suspicion that some driver disc

Re: Is there a way to programmatically turn on remote registry?

2012-10-23 Thread Kevin Holleran
g and everything blending together... :) Thanks for your help! Kevin On Tue, Oct 23, 2012 at 4:07 AM, Tim Golden wrote: > On 22/10/2012 21:01, Kevin Holleran wrote: > > Tim, > > > > I am looking here: > > > > > SOFTWARE\Microsoft\Windows\CurrentVersion\Uninst

Re: Is there a way to programmatically turn on remote registry?

2012-10-24 Thread Kevin Holleran
On Tue, Oct 23, 2012 at 11:44 AM, Kevin Holleran wrote: > On Tue, Oct 23, 2012 at 11:39 AM, Tim Golden wrote: > >> On 23/10/2012 16:17, Kevin Holleran wrote: >> > I am still having a small implementation problem >> > >> > [code] >>

Re: Is there a way to programmatically turn on remote registry?

2012-10-24 Thread Kevin Holleran
On Wed, Oct 24, 2012 at 7:51 AM, Tim Golden wrote: > On 24/10/2012 12:40, Kevin Holleran wrote:> Here is the full traceback: > > > Could you confirm what version of Windows is running on the remote > machine? Also, could you show the output of the following, please: > >

Re: Is there a way to programmatically turn on remote registry?

2012-10-24 Thread Kevin Holleran
On Wed, Oct 24, 2012 at 9:11 AM, Tim Golden wrote: > On 24/10/2012 13:36, Kevin Holleran wrote: > > Here is the output as you requested. Again thanks for your time & help. > > I hate monopolizing one person's time so much > > Heh. Everyone else is wel

Executing .exe on a remote Windows machine

2012-11-08 Thread Kevin Holleran
to do this or am I stuck coordinating a time when the machines can be rebooted? (because this would be faster than asking anyone on site to execute the command) Thanks for your help. Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: Executing .exe on a remote Windows machine

2012-11-08 Thread Kevin Holleran
My goodness psexec. thanks can't believe that didn't come to me... -- Kevin Holleran Master of Science, Computer Information Systems Grand Valley State University Master of Business Administration Western Michigan University SANS GCFE, CCNA, ISA, MCSA, MCDST, MCP My Paleo

Re: Executing .exe on a remote Windows machine

2012-11-08 Thread Kevin Holleran
On Thu, Nov 8, 2012 at 9:43 AM, Kevin Holleran wrote: > My goodness psexec. > > thanks can't believe that didn't come to me... > > > > > On Thu, Nov 8, 2012 at 9:31 AM, Tim Golden wrote: > >> On 08/11/2012 14:25, Kevin Holleran wrote: >>

Re: Executing .exe on a remote Windows machine

2012-11-08 Thread Kevin Holleran
On Thu, Nov 8, 2012 at 11:32 AM, Chris Rebert wrote: > On Thursday, November 8, 2012, Kevin Holleran wrote: > >> On Thu, Nov 8, 2012 at 9:43 AM, Kevin Holleran wrote: >> >>> My goodness psexec. >>> >>> thanks can't believe that didn

re.search when used within an if/else fails

2012-11-19 Thread Kevin T
ing like this behavior? any suggestions? the above code works but... why should i have to code it like this? kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: re.search when used within an if/else fails

2012-11-20 Thread Kevin T
) != None : #version d print sigName newVal = "%s%s" % ( '0'*signal['bits'],> newVal ) i can use either version a/b the else clause (version c) will not execute. fortunately, with version bb, the else clause will execute!! thanks for the input all.. kevin Now if i change -- http://mail.python.org/mailman/listinfo/python-list

Re: re.search when used within an if/else fails

2012-11-21 Thread Kevin T
On Nov 20, 1:37 pm, Ian Kelly wrote: > On Tue, Nov 20, 2012 at 12:09 PM, Kevin T wrote: > > #if re.search( "rsrvd", sigName ) :   #version a > > #if re.search( "rsrvd", sigName ) == None :   #version b > > if re.search( "rsrvd", sig

Re: re.search when used within an if/else fails

2012-11-28 Thread Kevin T
, which is tab based. thanks kevin On Wednesday, November 21, 2012 11:00:50 PM UTC-6, Chris Angelico wrote: > On Thu, Nov 22, 2012 at 3:41 AM, Kevin T wrote: > > > I went back and tried version a again, blam it is/does work now ?!?!? > > > > This is why the Short, Self-Co

Keeping a Tkinter GUI alive during a long running process

2012-12-20 Thread Kevin Walzer
f.playSound('connect') self.showProgress() self.file = Popen('echo %s | sudo -S %s -y install %s' % (self.passtext, self.finkpath.get(), self.packagename), shell=True, bufsize=0, stdout=PIPE).stdout for line in self.file: s

Second try: non-blocking subprocess pipe and Tkinter in 2.7

2012-12-21 Thread Kevin Walzer
-blocking, asynchronous reading out of the box. Apparently it does not. So, my question is hereby revised as such: how can I implement a non-blocking read of a subprocess pipe that can write data to the Tkinter text widget in an manner that does not cause the GUI to lock up? --Kevin -- Kevin

Command Line Progress Bar

2012-12-25 Thread Kevin Anthony
Hello, I'm writing a file processing script(Linux), and i would like to have a progress bar. But i would also like to be able to print messages. Is there a simple way of doing this without implementing something like ncurses? -- Thanks Kevin Anthony www.NoSideRacing.com Do you use Ba

Re: PYTHON 3.3 + GUI + COMPILE

2012-12-27 Thread Kevin Walzer
llows for free use in commercial apps. Hope this helps, Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

wiki.python.org

2013-01-09 Thread Reed, Kevin
Hello, I have been unable to access wiki.python.org for two days. Is there a problem with the server, or is it me? Thank you much, Kevin C. Reed New Python User -- http://mail.python.org/mailman/listinfo/python-list

Previous Question Answered - Thank You All For Your Replies

2013-01-09 Thread Reed, Kevin
Hello, My question concerning wiki.python.org unavailability has been answered. Thank you all for your assistance! You guys are awesome! For those of you who don't know, here's the info. http://mail.python.org/pipermail/python-list/2013-January/638182.html Thanks again, Kevin

Re: Importing class from another file

2013-01-22 Thread Kevin Holleran
Thanks, you got me straightened out. -- Kevin Holleran Master of Science, Computer Information Systems Grand Valley State University Master of Business Administration Western Michigan University SANS GCFA, SANS GCFE, CCNA, ISA, MCSA, MCDST, MCP "Do today what others won't, do tom

Parse a Wireshark pcap file

2013-01-22 Thread Kevin Holleran
Thanks for your help. Kevin -- http://mail.python.org/mailman/listinfo/python-list

Re: Parse a Wireshark pcap file

2013-01-22 Thread Kevin Holleran
id_value => password. Thanks for your help. -- Kevin Holleran Master of Science, Computer Information Systems Grand Valley State University Master of Business Administration Western Michigan University SANS GCFA, SANS GCFE, CCNA, ISA, MCSA, MCDST, MCP "Do today what others won't, do

Re: Parse a Wireshark pcap file

2013-01-22 Thread Kevin Holleran
I also found this: http://code.google.com/p/py-greppcap/ Which I can leverage to do what I want but I also get that dnet error! -- Kevin Holleran Master of Science, Computer Information Systems Grand Valley State University Master of Business Administration Western Michigan University SANS

Re: Parse a Wireshark pcap file

2013-01-22 Thread Kevin Holleran
On Tue, Jan 22, 2013 at 10:29 PM, Dave Angel wrote: > On 01/22/2013 10:15 PM, Kevin Holleran wrote: > >> Thanks, I have been trying to get it to work but I am on Mac OS 10.8.2. I >> tried to get it from Macports and download/install it myself. Both seem >&

Re: Parse a Wireshark pcap file

2013-01-23 Thread Kevin Holleran
, Jan 23, 2013 at 1:24 AM, Dennis Lee Bieber > wrote: > >> On Tue, 22 Jan 2013 22:43:24 -0500, Kevin Holleran >> declaimed the following in gmane.comp.python.general: >> >> > >> > Mac OS 10.8.2 >> > Python v.2.7 >> > I downloaded from the

Re: Buffering in Wing and IDLE 3

2012-02-01 Thread Kevin Walzer
problem but cannot directly do anything about it as the problem is with tcl/tk and Apple. A couple of days ago, Kevin Walzer wrote on an IDLE-sig post "I'm currently reviewing an updated patch to address the problem. When I commit the patch, it will go into both Tk's trunk and i

MySQL: AttributeError: cursor

2012-02-11 Thread Kevin Murphy
Hi All, I'm using Python 2.7 and having a problem creating the cursor below. Any suggestions would be appreciated! import sys import _mysql print "cursor test" db = _mysql.connect(host="localhost",user="root",passwd="mypw",db="python- test") cursor = db.cursor() >>> cursor test Traceback (mos

Re: How do you use the widgets in tkinter.ttk if you want to "import tkinter as tk"?

2012-03-04 Thread Kevin Walzer
Tkinter is a little annoying. The new widgets are not a drop-in replacement for the traditional Tk widgets. They can be used with 8.4 if the "tile" Tk extension is installed. This is how the ttk widgets were first deployed; they didn't enter Tk's core until

Re: converting from tcl/tkl to python

2012-03-09 Thread Kevin Walzer
he line with Tcl and your desire for a different language is for reasons in addition to the look and feel of the UI. However, if your software and its code is otherwise satisfactory and you need simply to update the UI design, that can be done in Tcl at far less cost using the ttk widg

python polygon

2012-04-05 Thread Kevin Zhang
Hi, I found python polygon link in this page http://pypi.python.org/pypi/Polygon/1.17 was invalid now. http://polygon.origo.ethz.ch/download 404 - Project not found Ooops, the subdomain is not valid because the according project does not (yet) exist. Go to the Origo main page at http://origo.eth

Re: Carbon Event Manager (Carbon.CarbonEvt module) - working?

2012-05-15 Thread Kevin Walzer
On 5/15/12 3:06 PM, msmucr wrote: Do I have something wrong or is it simply broken and unmaintained now? Support for Carbon Events was removed in Python 3.x and it does not work in 64-bit, to my knowledge--most of the Carbon API's are not supported by Apple anymore. -- Kevin Walzer Co

Re: Python and Tkinter by John E Grayson

2012-05-17 Thread Kevin Walzer
huge book and devotes several chapters to Tkinter), and has been updated at regular intervals, most recently in the last year or two; I've found it a very helpful reference and guide to Tkinter programming. -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Re: How to hide console with Popen on Windows?

2012-05-18 Thread Kevin Walzer
TARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW txtps = self.pscmd + ' -o ' + tempfile.gettempdir() + '\\whois.ps' + ' ' + tmpfile subprocess.check_output(txtps, startupinfo = startupinfo) Hope this helps. -- Kevin Walzer Code by

Re: Recruiting for Python Developer - Perm

2012-05-22 Thread Kevin Walzer
ts to mention is that competence on Mac OS X may also be required here. appscript is a Mac-specific technology (Python interface to Apple Event framework), and can be used to script Adobe Illustrator, which, of course, does not run on Linux. -- Kevin Walzer Code by Kevin http://www.codebykevi

Question about argparse and namespace

2012-05-23 Thread Kevin Anthony
s. Is this a good idea? is there a better way of doing this? -- Thanks Kevin Anthony Do you use Banshee? Download the Community Extensions: http://banshee.fm/download/extensions/ -- http://mail.python.org/mailman/listinfo/python-list

Re: what gui designer is everyone using

2012-06-07 Thread Kevin Walzer
years. None. I write GUI code by hand (Tkinter). -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Kevin Walzer
on that the slick "drag-and-drop" UI builders tend to be developed by commercial software shops to support their language and/or IDE, but find little traction among open-source developers and languages. --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-11 Thread Kevin Walzer
#x27;s are very ugly. http://www.codebykevin.com/phynchronicity-running.png http://www.codebykevin.com/quickwho-main.png -- Kevin Walzer Code by Kevin http://www.codebykevin.com -- http://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   5   6   7   8   >