I have the following code:
@app.route('/famcall/Audio/AudioMng_PlayDTMF/<string:output_stream>/<string:dtmf>/<string:duration>/<string:gap>', methods=['GET'])
def fam_audio_play_dtmf(output_stream, dtmf, duration, gap):
params = [self.mapAudioOutputStream.business_to_tech(output_stream), dtmf, duration, gap]
return self.call_fam_function_and_wait_response("AudioMng_PlayDTMF", params)
and I want to use the character # in my url because it´s a value that can be used for dtmf. Is there an encode function in python which can help me in this? Or should I forget this scenario?