Is it possible to get python to generate a simple sound like a sine wave? Is there any module available for this?
Ofcourse possible! In digital systems sound is stored and manipulated as an array of integers, each of which represent amplitude of the sound sampled at certain rate.
In case, you want to generate sine wave, you can store y values of sine curve in a numpy array then use library to play it.
There are several libraries out there for play-record-store audio, PyAudio and Wave are the two I generally use. You can visit one of my article on audio manipulation here.