Python 线程 - 意外输出

标签 python multithreading

我是 Python 新手,并且在下面编写了一个线程脚本,该脚本获取文件的每一行,并将其传递给 get_result 函数。如果是 200 或 301,get_result 函数应该输出 url 和状态代码。

代码如下:

import requests
import Queue
import threading
import re
import time

start_time = int(time.time())
regex_to_use = re.compile(r"^")


def get_result(q, partial_url):
    partial_url = regex_to_use.sub("%s" % "http://www.domain.com/", partial_url)
    r = requests.get(partial_url)
    status = r.status_code
    #result = "nothing"
    if status == 200 or status == 301:
        result = str(status) + " " + partial_url
        print(result)


#need list of urls from file
file_list = [line.strip() for line in open('/home/shares/inbound/seo/feb-404s/list.csv', 'r')]
q = Queue.Queue()
for url in file_list:
    #for each partial. send to the processing function get_result
    t = threading.Thread(target=get_result, args=(q, url))
    t.start()

end_time = int(time.time())
exec_time = end_time - start_time
print("execution time was " + str(exec_time))

我使用了队列和线程,但发生的情况是在线程完成输出数据之前输出“执行时间为x”的打印。

即典型的输出是:

200 www.domain.com/ok-url
200 www.domain.com/ok-url-1
200 www.domain.com/ok-url-2
execution time was 3
200 www.domain.com/ok-url-4
200 www.domain.com/ok-ur-5
200 www.domain.com/ok-url-6

这是怎么发生的,我想知道如何在脚本末尾显示脚本执行,即所有网址都已处理并输出后?

感谢 utdemir 下面给出的答案,这是更新后的 join 代码。

import requests
import Queue
import threading
import re
import time

start_time = int(time.time())
regex_to_use = re.compile(r"^")


def get_result(q, partial_url):
    partial_url = regex_to_use.sub("%s" % "http://www.domain.com/", partial_url)
    r = requests.get(partial_url)
    status = r.status_code
    #result = "nothing"
    if status == 200 or status == 301:
        result = str(status) + " " + partial_url
        print(result)


#need list of urls from file
file_list = [line.strip() for line in open('/home/shares/inbound/seo/feb-404s/list.csv', 'r')]
q = Queue.Queue()
threads_list = []

for url in file_list:
    #for each partial. send to the processing function get_result
    t = threading.Thread(target=get_result, args=(q, url))
    threads_list.append(t)
    t.start()

for thread in threads_list:
    thread.join()


end_time = int(time.time())
exec_time = end_time - start_time
print("execution time was " + str(exec_time))

最佳答案

你应该join线程等待它们,否则它们将继续在后台执行。

像这样:

threads = []
for url in file_list:
    ...
    threads.append(t)

for thread in threads:
    thread.join() # Wait until each thread terminates

end_time = int(time.time()
...

关于Python 线程 - 意外输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21700769/

相关文章:

python - Pillow 无法为不同字体呈现乌尔都语文本

Python线程,杀死线程

python - 当 matplotlib 中的数字有上标时,如何对齐刻度标签?

Python 2 绑定(bind) Net-SNMP 错误 - undefined symbol : netsnmp-memdup

java - 阻塞嵌套循环迭代器

python - Python中是否有参数锁定机制?

java - 简单的 GUI 倒计时应该如何工作?

asp.net-mvc - 即使没有对 Web 应用程序的任何请求,如何使线程在 IIS 服务器的后台工作?

android - SQLiteOpenHelper 单连接与多连接

.net - 添加和删​​除多线程应用程序的事件处理程序