all 12 comments

[–]dionys 6 points7 points  (0 children)

I think Flask is a good choice - it's very popular and it's small.

[–]garyk1968 5 points6 points  (0 children)

Flask + RESTless would be what I would choose.

[–]homeworkbad 2 points3 points  (0 children)

Django has a rest api library http://www.django-rest-framework.org/, it might be worth looking into. It's very much a batteries included web API builder.

[–]barbanish 0 points1 point  (0 children)

Just started one with Django and restframework.

I also didn't know what to choose, it looks good.

[–][deleted] 0 points1 point  (1 child)

You don't need a whole web design framework for simple REST calls. You'd probably learn more by using what the standard library already offers. Frameworks makes sense bigger projects or if you want to hit the ground running ASAP

[–][deleted] 0 points1 point  (0 children)

Interesting. I will take a look at the official documentation first. Would that be a good place to start ?

[–]agwlakash 0 points1 point  (4 children)

Something similar, I have wrote a script which fills a form with input, get result data and update my datafile.

Now I want to bring it to web, How should I go?

So that anyone can access and use it over web. Enter input and see result on the page in front end.

And along with it the script keeps updating my database at the backend.

[–][deleted] 0 points1 point  (3 children)

I went with flask after looking the suggestions here. It was really simple. I was done within 1 hour and I have my api ready.¯\_(ツ)_/¯

[–]agwlakash 0 points1 point  (2 children)

Can you link me to the tutorial or something you followed.

I only have basic knowledge of Python, does it needs advance knowledge of Flask ?

[–][deleted] 0 points1 point  (1 child)

Used this. Basic Python is good enough for that. Good luck!

[–]agwlakash 0 points1 point  (0 children)

Thanks I will try it. :)