Skip to content

Instantly share code, notes, and snippets.

@flub
Created June 19, 2014 14:15
Show Gist options
  • Save flub/b6d20e123a0b568e18a9 to your computer and use it in GitHub Desktop.
Save flub/b6d20e123a0b568e18a9 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
"""Generic host information"""
from __future__ import (absolute_import,
unicode_literals, print_function, division)
import abc
def boottime():
"""The time the system booted"""
def uptime():
"""Time duration since the system was booted"""
def loadavg():
"""The load average for the last 1, 5 and 15 minutes"""
################################################################
class HostInfoABC(object):
__metaclass__ = abc.ABCMeta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment