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, )
Get Python Standard Library now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.