Hi Guys,
I've setup this account with just a Hacker / 5USD subscription to prototype some applications. I have setup a simple flask server that listens on mywebaddress/webhook and sends a mail each 3min / 180SEC to my mail address.
Please see my response handler here in flask_app.py:
app = Flask(__name__)
#@app.route('/')
#def hello_world():
# return 'Hello from Flask!'
@app.route('/webhook', methods=['POST'])
def respond():
#bme280value = request.json
#msgText = MIMEText(bme280value, 'html')
sendmail()
print(request.json);
return Response(status=200)
My running processes are: enter link description here (please check the image).
The CPU usage after one day was 2300/2000sec.
Thank you!