Python
  Home arrow Python arrow Page 4 - Basic Threading in Python
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PYTHON

Basic Threading in Python
By: Peyton McCullough
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 129
    2005-04-04


    Table of Contents:
  • Basic Threading in Python
  • Using the Threading Module
  • Pooling Threads
  • More Thread Tricks

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Basic Threading in Python - More Thread Tricks
    ( Page 4 of 4 )

    There is more to threads than just spawning them and sending them on their way. The threading module's Thread module contains a few more methods that you should be aware of. The first two deal with naming threads. The method setName sets a thread's name, and the method getName retrieves a thread's name:

    import threading

    class TestThread ( threading.Thread ):

       def run ( self ):

          print 'Hello, my name is', self.getName()

    cazaril = TestThread()
    cazaril.setName ( 'Cazaril' )
    cazaril.start()

    ista = TestThread()
    ista.setName ( 'Ista' )
    ista.start()

    TestThread().start()

    No suprises there. Also, as you can see, threads have names even if you don't specify them.

    We can also check whether a thread is “alive” using the isAlive method. If the thread hasn't finished executing whatever is in its run method, then it's classified as being alive:

    import threading
    import time

    class TestThread ( threading.Thread ):

       def run ( self ):

          print 'Patient: Doctor, am I going to die?'

    class AnotherThread ( TestThread ):

       def run ( self ):

          TestThread.run( self )
          time.sleep ( 10 )

    dying = TestThread()
    dying.start()
    if dying.isAlive():
       print 'Doctor: No.'
    else:
       print 'Doctor: Next!'

    living = AnotherThread()
    living.start()
    if living.isAlive():
       print 'Doctor: No.'
    else:
       print 'Doctor: Next!'

    The second thread remains alive because we force it to wait using the time module's sleep method.

    If we want to make a thread wait for another thread to terminate itself, we can use the join method:

    import threading
    import time

    class ThreadOne ( threading.Thread ):

       def run ( self ):

          print 'Thread', self.getName(), 'started.'
          time.sleep ( 5 )
          print 'Thread', self.getName(), 'ended.'

    class ThreadTwo ( threading.Thread ):

       def run ( self ):

          print 'Thread', self.getName(), 'started.'
          thingOne.join()
          print 'Thread', self.getName(), 'ended.'

    thingOne = ThreadOne()
    thingOne.start()
    thingTwo = ThreadTwo()
    thingTwo.start()

    We can use the setDaemon method, too. If a True value is passed with this method and all other threads have finished executing, the Python program will exit, leaving the thread by itself:

    import threading
    import time

    class DaemonThread ( threading.Thread ):

       def run ( self ):

          self.setDaemon ( True )
          time.sleep ( 10 )

    DaemonThread().start()
    print 'Leaving.'

    Python also contains a thread module that deals with lower level threading. The only feature I would like to point out is the start_new_thread function it contains. Using this, we can turn an ordinary function into a thread:

    import thread

    def thread( stuff ):
       print "I'm a real boy!"
       print stuff

    thread.start_new_thread ( thread, ( 'Argument' ) )

    Conclusion

    There's much more to multi-threading than I explained in this article, but I will not bore you by extending the scope of this article to include everything. Moreover, as Guido van Rossum mentioned, the advantage gained by complex multi-threading in Python may be outweighed by the consequences. A small dose of common sense can eliminate much of the problems in simple multi-threading, however.

    Threading is very important when dealing with computer applications, and, as I mentioned earlier, Python isn't excluded. When used properly, threads can be very beneficial and often even crucial, as I've outlined in this article.



     
     
    >>> More Python Articles          >>> More By Peyton McCullough
     

       

    PYTHON ARTICLES

    - Tuples and Other Python Object Types
    - The Dictionary Python Object Type
    - String and List Python Object Types
    - Introducing Python Object Types
    - Mobile Programming using PyS60: Advanced UI ...
    - Nested Functions in Python
    - Python Parameters, Functions and Arguments
    - Python Statements and Functions
    - Statements and Iterators in Python
    - Sequences and Sets in Python
    - Python Expressions and Operators
    - Dictionaries, Variables and Statements in Py...
    - Data Types in Python
    - The Python Language
    - SSH with Twisted





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek