Preview of "Explore Flask" Book
exploreflask.com
Preview of "Explore Flask" Book
1–10 of 15 posts
Re: Preview of "Explore Flask" Book
#2Re: Preview of "Explore Flask" Book
#3I'm the author if anyone has any questions. If you have some feedback, I'm looking forward to seeing bug reports on GitHub: https://github.com/rpicard/explore-flask
Re: Preview of "Explore Flask" Book
#4I'm planning on getting it for free, and if it's useful, probably drop like 5-10 dollars on it. Looking forward to reading!
Re: Preview of "Explore Flask" Book
#5I'm planning on getting it for free, and if it's useful, probably drop like 5-10 dollars on it. Looking forward to reading!
That's exactly what I'm hoping for. If you don't find it useful it would be amazing of you to contribute some feedback, even if it's just letting me know how you felt.
Without having seen it yet, one thing I'd love to see is "Flask for recovering Djangonauts" or something similar, in addition to how to use Flask at scale. Basically, best practices, advice, and some good libraries for someone who doesn't want ALL the batteries included in their framework, but also would prefer some more reliability than randomly slapping some libraries together and hoping for the best. The intimidation of not having true official integration for a lot of Flask plug-ins is what has kept me from doing anything at scale with Flask so far, recognizing that this is not necessarily a valid concern.
Re: Preview of "Explore Flask" Book
#6Re: Preview of "Explore Flask" Book
#7Re: Preview of "Explore Flask" Book
#8Perhaps a link somewhere to what this 'flask' thing actually is on either your repo or the page you linked to would be appreciated by people like myself who have no clue what you're writing a book about in the first place?
For the record, here it is: http://flask.pocoo.org/
Re: Preview of "Explore Flask" Book
#9I love this. I think it would be useful to move the debugging chapter much earlier in the book. Presumably, new users of Flask will encounter the (pretty awesome) Werkzeug error page as they move through the book. It might work well if a debugging chapter had exposed them to a little bit of how to interpret and use that tool. I'm sure there's a lot more about debugging to cover so maybe splitting things up makes sens…
Re: Preview of "Explore Flask" Book
#10Earlier quoted context omitted.
That's exactly what I'm hoping for. If you don't find it useful it would be amazing of you to contribute some feedback, even if it's just letting me know how you felt.
That is exactly my plan as well. Glad there's finally a book out there on Flask. Without having seen it yet, one thing I'd love to see is "Flask for recovering Djangonauts" or something similar, in addition to how to use Flask at scale. Basically, best practices, advice, and some good libraries for someone who doesn't want ALL the batteries included in their framework, but also would prefer some more reliability than…
As far as official library integration goes, I wouldn't worry about it too much. There are several standard extensions that people use (e.g. Flask-WTF, Flask-Bcrypt, Flask-SQLAlchemy) and as long as you stick with them you'll be alright. They're usually just wrappers around major Python libraries (WTForms, Bcrypt, SQLAlchemy) so the source is easy enough to check out.