This is an DAC driver for framework for CircuitPython. It is a light wrapper over the analogio CircuitPython core module.
In your project conf.py file, include an AnalogOut driver.
# conf.py
conf = {
'DAC':
{'driver': 'AnalogOut',
'pin':
{'my_dac': 'A0'}
}
}