I\'m trying to begin developing a skill for alexa using flask-ask and ngrok in python. Following is my code:
from flask import Flask from flask_ask import As
Ran into the same issue, you can fix it by downgrading cryptography to anything less than 2.2 for me.
pip install 'cryptography<2.2'
rpg711 gets all the credit (see comments the on original post)