Currently I have the following.
import winsound
winsound.Beep(1000, 1000)
And it works. But it does appear to sleep the thread. In the program I'm developing, sleeping the main thread will be a big no no. I could multi-thread it, but only as a last resort. Does anyone have any other ways to generate tones on Windows?