I am going to develop a auto text summarization tool as my FYP. I am going to use Python and it’s going to be a web application. Since, there would be no database involved in my tool is it a good idea to use Django? Can anyone recommend any other framework? Thanks.
Share
If there’s no database in your application then you presumably won’t be using Django’s ORM, which is one main reason to use it rather than something lighter.
Having said that, if you’re familiar with Django, use Django. If you’re not and are looking for a Python web framework, how about something like Flask? The templating module (Jinja2, I think) is a bit more powerful than Django’s templates.