15 lines
No EOL
326 B
Python
15 lines
No EOL
326 B
Python
"""
|
|
The ping service in pure Python.
|
|
"""
|
|
|
|
# http://code.activestate.com/recipes/409689-icmplib-library-for-creating-and-reading-icmp-pack/
|
|
from service import Service
|
|
|
|
|
|
class PingService(Service):
|
|
def __init__(self, **kwargs):
|
|
Service.__init__(self, **kwargs)
|
|
|
|
|
|
def create(kwargs):
|
|
return PingService(**kwargs) |