linspector-old/lib/services/ping.py
2013-06-19 23:48:19 +02:00

15 lines
No EOL
350 B
Python

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