I l@ve RuBoard Previous Section Next Section

9.10 The winsound Module

(Windows only) The winsound module allows you to play Wave sound files on a Windows machine. Example 9-9 shows how winsound is used.

Example 9-9. Using the winsound Module
File: winsound-example-1.py

import winsound

file = "samples/sample.wav"

winsound.PlaySound(
    file,
    winsound.SND_FILENAME|winsound.SND_NOWAIT,
    )
    I l@ve RuBoard Previous Section Next Section