Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| import os | |
| import sys | |
| import traceback | |
| from functools import wraps | |
| from multiprocessing import Process, Queue | |
| def processify(func): | |
| '''Decorator to run a function as a process. | |
| Be sure that every argument and the return value |
| #!/usr/bin/env python | |
| # -*- coding utf-8 -*- | |
| # Tested in Python 3.6.3 | |
| import threading | |
| import socket | |
| import ping3 # pip install ping3 | |
| import datetime | |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of