Skip to content

Instantly share code, notes, and snippets.

@pjovic
pjovic / th_pinger.py
Created February 6, 2021 18:27 — forked from sourceperl/th_pinger.py
Python script for do multi-threaded ping
#!/usr/bin/env python
# ping a list of host with threads for increase speed
# use standard linux /bin/ping utility
from threading import Thread
import subprocess
try:
import queue
except ImportError:
import Queue as queue