Re: [Tutor] Online class/education for Python?

2008-07-20 Thread Dick Moores
At 02:45 PM 7/19/2008, David wrote: Steve Poe wrote: Anyone taken or know of any online classes teaching Python? I know O'Reilly Press teaches online technical courses, through the University of Illinois, but no Python . Thanks. Steve

[Tutor] (no subject)

2008-07-20 Thread amit sethi
Hi list , Can someone give me an idea about the audio libraries in python . I tried using pymedia . What are the options available . -- A-M-I-T S|S ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] (no subject)

2008-07-20 Thread Noufal Ibrahim
amit sethi wrote: Hi list , Can someone give me an idea about the audio libraries in python . I tried using pymedia . What are the options available . These may be a little heavy duty for you but they do audio. 0. Pyglet (Full windowing and multimedia library) - http://pyglet.org/ 1.

Re: [Tutor] (no subject)

2008-07-20 Thread arsyed
The python wiki has some options that might be worth checking out under Playing and Creating Sounds: http://wiki.python.org/moin/PythonInMusic On Sun, Jul 20, 2008 at 2:16 AM, amit sethi [EMAIL PROTECTED] wrote: Hi list , Can someone give me an idea about the audio libraries in python . I

Re: [Tutor] Guidance on jump-starting to learn Python

2008-07-20 Thread wesley chun
Any recommended homework assignments? I have two books as well: Core Python Programming from Wesley Chun , Second Edition. here are some exercises suggestions on homework based on the lab assignments i give in my courses based on that book. the legend is CHAP#: EXERCISE #s and apply to the

Re: [Tutor] Guidance on jump-starting to learn Python

2008-07-20 Thread bhaaluu
On Fri, Jul 18, 2008 at 1:29 AM, Steve Poe [EMAIL PROTECTED] wrote: Any recommended homework assignments? I have two books as well: Core Python Programming from Wesley Chun , Second Edition. Python Programming for the Absolute Beginner, Second Edition. Thanks so much for your advice/help

Re: [Tutor] Guidance on jump-starting to learn Python

2008-07-20 Thread Janet Hawtin
Hi folks I am using twitter and there is an account on that which posts links from a del.icio.us account which is collecting programming references Quite a few of the links posted are for python programming. http://twitter.com/delicious_prog Janet ___

[Tutor] Raw string

2008-07-20 Thread Neven Goršić
Hi! In every manual and book I read only one way to make a raw string: re:\mm tests\1. exp files\5.MOC-1012.exp. I don't know how to make a string raw string if it is already contained in a variable. s.raw() or something like that ... Thank you very much PS. It seems like a very basic

Re: [Tutor] Raw string

2008-07-20 Thread Steve Willoughby
Neven Goršić wrote: Hi! In every manual and book I read only one way to make a raw string: re:\mm tests\1. exp files\5.MOC-1012.exp. I don't know how to make a string raw string if it is already contained in a variable. s.raw() or something like that ... Actually, there's no such thing as a

Re: [Tutor] Raw string

2008-07-20 Thread Steve Willoughby
bob gailer wrote: I'm guessing you want x.raw() # to display r\t Is that true. That's the only way I can interpret your question. Hm... or did you (speaking to the OP) intend for your script to interpret strings you're reading from another source, like user input or a text file, and

Re: [Tutor] Raw string

2008-07-20 Thread bob gailer
Neven Goršić wrote: Hi! In every manual and book I read only one way to make a raw string: re:\mm tests\1. exp files\5.MOC-1012.exp. I don't know how to make a string raw string if it is already contained in a variable. s.raw() or something like that ... Looking up raw string in the docs

[Tutor] Import modeuls

2008-07-20 Thread Oleg Oltar
Hi I need to import several modules from many folders which has subfolders ~/folder/tests/sampletest.py ~/folder/suites/samplesuit.py a suit uses tests from tests folder. I need to import them somehow from tests folder. I added ~/folder to PYTHONPATH in my test_runner: import sys import os

Re: [Tutor] Import modeuls

2008-07-20 Thread arsyed
On Sun, Jul 20, 2008 at 12:46 PM, Oleg Oltar [EMAIL PROTECTED] wrote: Hi I need to import several modules from many folders which has subfolders ~/folder/tests/sampletest.py ~/folder/suites/samplesuit.py a suit uses tests from tests folder. I need to import them somehow from tests folder.

Re: [Tutor] Raw string

2008-07-20 Thread Neven Goršić
On Sun, Jul 20, 2008 at 5:48 PM, Steve Willoughby [EMAIL PROTECTED] wrote: Neven Goršić wrote: Hi! In every manual and book I read only one way to make a raw string: re:\mm tests\1. exp files\5.MOC-1012.exp. I don't know how to make a string raw string if it is already contained in a

Re: [Tutor] Online class/education for Python?

2008-07-20 Thread Steve Poe
Joe, It's an online class without a specific time. The class runs for six weeks with two assignments per week. Steve On Sun, Jul 20, 2008 at 3:51 PM, Joe Bennett [EMAIL PROTECTED] wrote: What time where the classes? Web site seems to be missing that info... -Joe On Sun, Jul 20, 2008 at

[Tutor] adding a watermark to a sequence of images

2008-07-20 Thread Christopher Spears
Has anyone used Python to watermark of sequence of images? Thanks. ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] adding a watermark to a sequence of images

2008-07-20 Thread Michiel Overtoom
Christopher wrote... Has anyone used Python to watermark of sequence of images? No, but I have used PIL (Python Image Library) to do other things to batches of images, like resizing or printing statistics on it. Maybe you can get some ideas from these; maybe you can combine them with a

Re: [Tutor] Online class/education for Python?

2008-07-20 Thread bhaaluu
Hiyas Steve, If you're disciplined enough to shell out $$$ for an online class and do the work, why not just do it on your own? The tuition for a class will buy you several very nice Python books: Learning Python. Lutz. Programming Python. Lutz Core Python. Wesley Chun. Python Programming for