Live data from Hacker News

Preview of "Explore Flask" Book

exploreflask.com

1–10 of 15 posts

Re: Preview of "Explore Flask" Book

#4
post #2

I'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.

Re: Preview of "Explore Flask" Book

#5
post #4
post #2

I'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.

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 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

#6
I 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 sense too.

Re: Preview of "Explore Flask" Book

#7
Perhaps 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?

Re: Preview of "Explore Flask" Book

#8
post #7

Perhaps 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?

That's actually why I hadn't posted this already, but now that the traffic is rolling in, I'm not complaining!

For the record, here it is: http://flask.pocoo.org/

Re: Preview of "Explore Flask" Book

#9
post #6

I 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…

I hadn't thought of that, but it does make sense. I've added in issue to the repo: https://github.com/rpicard/explore-flask/issues/16

Re: Preview of "Explore Flask" Book

#10
post #5
post #4

Earlier 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…

I wonder if "Flask for recovering Djangonauts" would make for a good blog post / tutorial. It might even be enough material for a video course. Best practices, advice, and good libraries are what I'm shooting for with Explore Flask, so hopefully that will come across.

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.

Post reply on HN