Simplistic Python Thread example
Here is a simple Python example using the
Thread object in the
threading module.
import time
from threading import Thread
def myfunc(i):
print "sleeping 5 sec from thread %d" % i
time.sleep(5)
print "finished sleeping from thread %d" % i
for i in range(10):
t = Thread(target=myfunc, args=(i,))
t.start()
Results:
sleeping 5 sec from thread 0 sleeping 5 sec from thread 1 sleeping 5 sec from thread 2 sleeping 5 sec from thread 3 sleeping 5 sec from thread 4 sleeping 5 sec from thread 5 sleeping 5 sec from thread 6 sleeping 5 sec from thread 7 sleeping 5 sec from thread 8 sleeping 5 sec from thread 9
...and 5 seconds later:
finished sleeping from thread 0 finished sleeping from thread 1 finished sleeping from thread 2 finished sleeping from thread 3 finished sleeping from thread 4 finished sleeping from thread 5 finished sleeping from thread 6 finished sleeping from thread 7 finished sleeping from thread 8 finished sleeping from thread 9
13
Comments
—
Comments feed for this post
#3 Oleg Tarasenko commented on 2009-09-10:
I also like the example.
I tuned it a little bit, so can use like a very simple load testing tool. E.g. if you need to generate few thousands of request.
import urllib2
from threading import Thread
def btl_test(): while 1:
page = urllib2.urlopen("example.com")
for i in range(120):
t = Thread(target = btl_test)
t.start()
#5 Bino commented on 2009-12-09:
Hi Elliot and all .. That realy great impact example.
Just one question, at line -->
t = Thread(target=myfunc, args=(i,))
Why there is a "comma" after "i" while there is only single paramater ? is it a must ?
Sincerely -bino-
#6 Eliot commented on 2009-12-09:
Oleg,
That looks like a cool example. Thanks!
Bino,
I gave it a quick try, and it looks like the comma is required.
The Thread object expects a tuple for the args argument. Since the operator for forming tuples is the comma and not the parentheses, a comma is required for a tuple of one item. See here for more info about that.
#7 khanal commented on 2012-03-29:
Hi Elliot and all .. That realy great impact example.
Just one question, at line -->
t = Thread(target=myfunc, args=(i,))
Why there is a "comma" after "i" while there >is only single paramater ? is it a must ?
Sincerely -bino-
bino, the ',' after is necessary here since the argument (or the set of arguments) is a tuple. remember (tuple,) [list,] {dictionary,}
in the above types, a comma is not mandated after the last element unless it only has a single element. So, you would not have to type list = [1,2,] but you would have to type list = [1,] or it would not be a list. Why make a list with one element? Well, you could always append to a list iff it IS a list.
ps. The reason I chose list instead of tuple is that the word list seems to naturally make sense in this explanation.
#8 Hopping Bunny commented on 2012-03-29:
I finally broke in to that exclusive world of threads, thanks to your example. THANKS A TONNE !!!!!!!!
#9 Eliot commented on 2012-03-30:
khanal: The comma is only required for tuples. Single item lists and dicts don't require a comma.
#12 Ben commented on 2012-08-31:
what happen if i get this kind of things :
jsb.lib.threads:98 start_new_thread | .usr.lib.python2.7.threading:495 start | [HTML_REMOVED]: can't start new thread
threads - thread space is exhausted - can't start thread
#13 love kumar commented on 2012-12-23:
Dear sir, I am new to python, and i tried several examples , now i am looking for something in threading and multithreading, i already search on web but only found how to print thread number and timing of thread execution, i am looking for some thing where i can use thread with my own programs and also some basics of threading with details. Thank you in advance. Regards
Post a comment
About
I'm Eliot and this is my notepad for programming topics such as Python, Django, Ubuntu, Emacs, etc... more »
Search Blog
Tags
-
algorithms
(6)
-
android
(2)
-
aws
(10)
-
blogproject
(20)
-
c_cplusplus
(12)
-
cardstore
(8)
-
colinux
(2)
-
concurrency
(13)
-
conkeror
(2)
-
core
(2)
-
cygwin
(17)
-
datastructures
(15)
-
datetime
(4)
-
decorators
(4)
-
django
(41)
-
emacs
(22)
-
files_directories
(12)
-
git
(6)
-
hardware
(6)
-
install_setup
(8)
-
javascript
(3)
-
keyboard
(9)
-
matplotlib
(6)
-
mercurial
(4)
-
nginx
(2)
-
persistence
(6)
-
preferences
(7)
-
processes
(4)
-
pyqt
(18)
-
python
(157)
-
ratpoison
(3)
-
regexes
(6)
-
rsync
(3)
-
softwaretools
(17)
-
sql
(14)
-
ssh
(12)
-
subversion
(6)
-
twisted
(7)
-
ubuntu
(66)
-
urxvt
(5)
-
vxworks
(25)
-
webdev
(8)
-
wmii
(7)
Blogroll
- Adam Gomaa
- Alex Clemesha
- Amir Salihefendic
- Armin Ronacher
- David Beazley
- David Ziegler
- Duncan McGreggor
- Gareth Rushgrave
- Glyph Lefkowitz
- Guido van Rossum
- Ian Bicking
- Jacob Kaplan-Moss
- James Bennett
- James Tauber
- Jesper Noehr
- Marty Alchin
- Matt Harrison
- Nikolay Kolev
- Parand Darugar
- Peter Baumgartner
- Peter Bengtsson
- Rob Hudson
- Simon Willison
- Will McGugan
#1 Tomek commented on 2009-05-24:
Cool ;) I like such simplistic examples. THX.
Tomek