pyparts.parts.sensor.temperature.base_temperature_sensor
index
/home/sean/src/python/pyparts/src/pyparts/parts/sensor/temperature/base_temperature_sensor.py

 
Modules
       
abc
pyparts.parts.base_part

 
Classes
       
pyparts.parts.base_part.BasePart(__builtin__.object)
BaseTemperatureSensor

 
class BaseTemperatureSensor(pyparts.parts.base_part.BasePart)
    
Method resolution order:
BaseTemperatureSensor
pyparts.parts.base_part.BasePart
__builtin__.object

Data descriptors defined here:
temp_c
temp_f

Data and other attributes defined here:
__abstractmethods__ = frozenset(['_get_temp_c'])
__metaclass__ = <class 'abc.ABCMeta'>
Metaclass for defining Abstract Base Classes (ABCs).
 
Use this metaclass to create an ABC.  An ABC can be subclassed
directly, and then acts as a mix-in class.  You can also register
unrelated concrete classes (even built-in classes) and unrelated
ABCs as 'virtual subclasses' -- these and their descendants will
be considered subclasses of the registering ABC by the built-in
issubclass() function, but the registering ABC won't show up in
their MRO (Method Resolution Order) nor will method
implementations defined by the registering ABC be callable (not
even via super()).

Data descriptors inherited from pyparts.parts.base_part.BasePart:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)