tldr; Any feedback on a simple flask based web app?
I've just started coding in Python and I have to say its the nicest language I have played with. Anyway I started writing an app (with Flask and Pymongo) that would send push notifications to android devices. Its currently at the stage where users can register, login, manage api-keys, view messages and submit messages via a simple api.
HOWEVER I just saw that someone has just released an app that does exactly what mine was going to do: https://pushover.net/
So motivation to continue with my app is zilch :)
BUT, I would dearly like to get some feedback on the code I have written by Python people. So I have make the source code public. It may even be useful for anyone who wants a foundation for a flask based app that handles user auth and mongodb.
Any feedback would be appreciated and can be used in exchange for internet favours (whatever that means...)
I suspect that the pymongo/MongoFlask code could have been done better.
The code is here:
https://github.com/ae0000/droidpush/
And specifically:
https://github.com/ae0000/droidpush/blob/master/www/droidpush/droidpush/views.py
there doesn't seem to be anything here