Module for easy data acquisition from Maxwell MX-25 501 digital multimeters. You can read the currently displayed value with very little effort. Example:
from maxwell import Maxwell multimeter=Maxwell('/dev/ttyS0') value,unit=multimeter.read() print '%s %s'%(value,unit)
See maxwell.py for instructions about the required multimeter setup (how to enable serial communication).