Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6074061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:20:25+00:00 2026-05-23T10:20:25+00:00

I’m looking to call a python function from within another python script in a

  • 0

I’m looking to call a python function from within another python script in a new thread.
I have experience using subprocess.Popen, but I used that for calling .exe’s in the command line. Anyone recommend how to do this or a module to use?

def main(argv):
    call otherdef(1,2,3) in a new thread
    sleep for 10 minutes
    kill the otherdef process

def otherdef(num1, num2, num3):
    while(True):
        print num1
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:20:25+00:00Added an answer on May 23, 2026 at 10:20 am

    Here is a solution, but its not exactly like you asked, because its complicated to kill a thread. Its better to let the thread terminate itself, all threads default to daemonic=False (unless its parent thread is daemonic), so when the main thread dies, your thread would live. Set it to true, and it will die with your main thread.

    Basically all you do is launch a Thread and give it a method to run. You needed to be able to pass arguments so as you can see I pass an args= parameter with the values to pass to the target method.

    import time
    import threading
    
    
    def otherdef(num1, num2, num3):
        #Inside of otherdef we use an event to loop on, 
        #we do this so we can have a convent way to stop the process.
    
        stopped = threading.Event()
        #set a timer, after 10 seconds.. kill this loop
        threading.Timer(10, stopped.set).start()
        #while the event has not been triggered, do something useless
        while(not stopped.is_set()):
            print 'doing ', num1, num2, num3
            stopped.wait(1)
    
        print 'otherdef exiting'
    
    print 'Running'
    #create a thread, when I call start call the target and pass args
    p = threading.Thread(target=otherdef, args=(1,2,3))
    p.start()
    #wait for the threadto finish
    p.join(11)
    
    print 'Done'    
    

    Its still unclear if you want a process or a thread, but if you want a Process import multiprocessing and switch threading.Thread( to multiprocessing.Process(, everything else stays the same.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery bug and I've been looking for hours now, I can't
I'm looking for suggestions for debugging... If you view this site in Firefox or
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
Seemingly simple, but I cannot find anything relevant on the web. What is the
I want to count how many characters a certain string has in PHP, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.