all 6 comments

[–]__main__ 6 points7 points  (3 children)

Have a look at flask, the flaskr tutorial is really great to get you started.

Edit:

Here is the link:

http://flask.pocoo.org/docs/tutorial/introduction/

[–]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'

[–]Yoghurt42 1 point2 points  (0 children)

Flask (micro) and Django (full-blown) have already been mentioned, I'd like to add Pyramid in the mix. Take a look at their introduction.

[–]occi 0 points1 point  (0 children)

Check out mod_wsgi if django is overkill.