How to use Deepspeech 0.6 with Python on Windows

Hello!
I have recently upgraded Deepspeech from version 0.5 to 0.6 on Python, Windows. I reckon that numerous things have changed and I cannot figure out how to implement the new version in my pipeline.

Previously I could do the following:

import deepspeech_example as deepex
dsmodel = deepex.getModel()
transcription = deepex.speechToText(audio, dsmodel)

that would yield the transcription of the audio. How can I replicate this now with the new version? Are there any updated examples or tutorials?

Hi,

Examples: https://github.com/mozilla/DeepSpeech-examples

Thank you, I will give this a try.