Search the web
Sign In
New User? Sign Up
PhillyPug · Python Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 286 - 315 of 344   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
286
Final reminder, we're in the last two weeks of open registration for PyCamp, Plone Boot Camp, and Advanced Plone Boot Camp: http://trizpug.org/boot-camp/2008/ ...
Chris Calloway
ifoufo
Offline Send Email
Jul 14, 2008
3:52 pm
287
A colleague and I are in Portland at OScon. We're in an advanced wxPython session at the moment, and attended an intro session and a Django session yesterday....
Kyle R. Burton
kylerburton
Offline Send Email
Jul 22, 2008
6:05 pm
288
... Not attending, but I'll be at the Django sprint in DC next week. Things to do in Portland: Voodoo donuts, the river, the rose gardens. Gabriel...
Gabriel Farrell
gsf789
Offline Send Email
Jul 22, 2008
6:17 pm
289
Thanks for the suggestions. So far we've been to the White Eagle, a Rogue Brew Pub and last night at the Python / Django BOF session at Jax. Portland is a...
Kyle R. Burton
kylerburton
Offline Send Email
Jul 23, 2008
6:06 pm
290
Dear Group, Thanks for letting me join the PhillyPug! I am writing a program which among other things scrapes a number from a Yahoo finance web page. I end up...
moller_chris
Offline Send Email
Aug 5, 2008
11:35 am
291
Chris, "".join(z[:-1]) This uses the join method of the string "" (empty), and uses the values from the variable z as the input. The square braces allow you to...
Shawn Milochik
shawnmilo
Offline Send Email
Aug 5, 2008
11:40 am
292
Dear Shawn, Wow, fast and simple! Thank you! C On 8/5/08 7:38 , "Shawn Milochik" <shawn.milo@...> wrote: Chris, "".join(z[:-1]) This uses the join method...
Moller, Chris
moller_chris
Offline Send Email
Aug 5, 2008
12:08 pm
293
If the list contains text characters in varying places, you can do something like this to extract a float: x = ['2','5','.','3','5','M'] y = float(''.join([i...
Kevin Hill
khill3210
Offline Send Email
Aug 5, 2008
12:18 pm
294
Hi Kevin, Another helpful answer! Thank you. Chris On 8/5/08 8:18 , "Kevin Hill" <khill@...> wrote: If the list contains text characters in varying places,...
Moller, Chris
moller_chris
Offline Send Email
Aug 5, 2008
12:59 pm
295
... Since he's looking for numeric things, it's probably safe to use the `in' operator y = float(''.join([i for i in x if i in '0123456789.-'])) However,...
Andrew Gwozdziewycz
jyrixx
Offline Send Email
Aug 5, 2008
1:24 pm
296
Dear All, I am writing data to an Excel spreadsheet using the CSV module. Is it possible to write data, close the file, then later re-open the file and write...
moller_chris
Offline Send Email
Aug 23, 2008
10:35 am
297
If you want to append to a file, open it with mode "ab" instead of "wb". Using the "w" mode truncates the file. See the description of open() here: ...
Kevin Hill
khill3210
Offline Send Email
Aug 23, 2008
11:00 am
298
Hi Kevin, Many thanks. I missed the append 'a' mode when reading the python docs. Problem solved. Chris On 8/23/08 7:00 AM, "Kevin Hill" <khill@...> wrote:...
Moller, Chris
moller_chris
Offline Send Email
Aug 23, 2008
3:02 pm
299
Hello everyone! I am currently trying to teach myself Python and for the most part I am doing alright with it. However, I was trying to do an example from a...
knikey15
Offline Send Email
Sep 4, 2008
1:00 pm
300
Here is the key to all you seek: http://www.catb.org/~esr/faqs/smart-questions.html ... -- Turnabout is fair play... http://uath.org/english.php?news=26...
Shawn Milochik
shawnmilo
Offline Send Email
Sep 4, 2008
1:18 pm
301
... Please do read the above, which is a great resource. The short answer to your question, however, is that you should cut and paste the section of code...
Gabriel Farrell
gsf789
Offline Send Email
Sep 4, 2008
2:00 pm
302
Hi, I have 350 stock tickers in a spreadsheet file (stocklist.csv). I am trying to generate a list of symbol and price per share using the yahoo API in yahoo...
moller_chris
Offline Send Email
Sep 7, 2008
5:03 pm
303
You'll need to look at threads more carefully, and learn about the `join` method. You'll want to do something along the lines of: threads = [] for i in...
Andrew Gwozdziewycz
jyrixx
Offline Send Email
Sep 7, 2008
5:35 pm
304
Hi Andrew, It helps a great deal. I had seen the join() method in other thread examples and misunderstood it. I thought it was a method from the string object...
Moller, Chris
moller_chris
Offline Send Email
Sep 7, 2008
7:08 pm
305
Hi Andrew: The following checks 350 stock symbols in 4 seconds. Not bad considering the non-threaded program takes 33 seconds. It works very well now thanks to...
Moller, Chris
moller_chris
Offline Send Email
Sep 7, 2008
8:59 pm
306
Hi, I am pretty new and I looking at Python as a language to learn possibly. Regards, George A'Zary ... From: "PhillyPug Moderator"...
George A'Zary
georgeazary
Offline Send Email
Oct 24, 2008
2:10 pm
307
Hi, George. So, what are you looking for in a language? What language(s) have you used already? I think Python is a fantastic language, but there are a lot of...
Shawn Milochik
shawnmilo
Offline Send Email
Oct 24, 2008
2:32 pm
308
Botonomy LLC is a small and growing Philadelphia-area IT consulting company founded in 2005 which specializes in Python-based solutions. PyGuys.com provides an...
Christian Simms
csimms69
Offline Send Email
Dec 4, 2008
3:45 pm
309
Mark Lutz is the author of "Programming Python" and "Learning Python" from O'Reilly. While, I don't think "Programming Python" is nearly as good as...
Andrew Gwozdziewycz
thinkiandy
Offline Send Email
Jan 5, 2009
7:49 pm
310
Prentice Hall sent me a copy of Python Fundamentals (http:// www.informit.com/store/product.aspx?isbn=0137143419). It includes 7 hours of video training. Is...
Andrew Gwozdziewycz
thinkiandy
Offline Send Email
Jan 24, 2009
7:21 pm
311
Hey Andrew, I think I could benefit from the training. I am primarily a .net developer and have not been successful in getting python into my organization....
Vincent Zaffiro
vincent_zaffiro
Online Now Send Email
Jan 24, 2009
8:52 pm
312
Greetings: I'd like to find out if there would be interest in a Fall 2009 conference/working group to examine the use of multithreaded approaches (and...
rsiderits
Offline Send Email
Feb 25, 2009
9:43 pm
313
That sound pretty cool. -Tommy...
Tommy
pinchyfingers
Offline Send Email
Feb 26, 2009
12:42 am
314
Very cool. --Alan...
Alan Elkner
aelkner
Offline Send Email
Feb 26, 2009
1:59 am
315
Great, I'll wait a few days to see how many people are interested. I can pick up a few people from computer or possible Neuro-Bio-Engineering students but the...
rsiderits
Offline Send Email
Feb 26, 2009
1:59 pm
Messages 286 - 315 of 344   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help