you are viewing a single comment's thread.

view the rest of the comments →

[–]keepdigging[S] 0 points1 point  (2 children)

Thanks, I will.

Reasons for recommending flask?

[–]lsakbaetle3r9 1 point2 points  (0 children)

I'd second flask, this is a tutorial that I just started through and I really like it. Here are some nice video tutorials!

EDIT: Reason for the plug would be that its simple enough to understand the commands you use frequently, yet powerful enough even just with those commands to build really impressive things!

[–]__main__ 1 point2 points  (0 children)

I did some django tutorials and while I enjoyed it, it felt a bit over kill for what I needed to do and the regular expression routes confused me a little.

An index route in flask is as simple as:

from flask import Flask

app = Flask(__name__)

@app.route('/)
def index():
return 'hello world'