I had same situation when wanted to try Python for web development :) And I went with Django. While sometimes it is hard to understand all the magic behind of Django, it is nice and full of very helpful things. If you like ORMs, then Django has good one. It also has admin panel. Generic views is also good thing :) Basically it is very nice framework and when you will run your first app online, development of the second one will be fun :)
But after some time, I found Flask. And now I'm working with it. Why? Because sometimes I just like to build and create things by myself, I want to learn and know how things are working. Flask is minimalistic thing and you will create all the "magic" Django already has. I'm happy that I started with Django, just because now I can use some principles from there in my Flask apps. Flask has less users, but so far it was not a big deal for me. It also has extensions which already helping you with some stuff. And while ORM is not built in so deeply as in Django, I like that, because I do hate ORMs (call me old fashioned, but I still think raw SQL is much more effective in my cases).
Best thing would be to try both and choose the one you like. Experienced guys can give advices that one is better than another one, but I would say - try! If you see that you are breaking legs with Django, maybe Flask will help. Or other way around.
Have fun!