Ask HN: Framework or no framework
https://news.ycombinator.com/item?id=1038193Last month I used my spare time to create a simple Django admin database that sorts lawyer names scraped with a simple spider I wrote in Python. I first tried Scrapy as suggested here http://news.ycombinator.com/item?id=946640 but then I realized that I could do the same directly with Python in a much simpler way. Is the same true for Django?
Do you recommend using Python to develop my app instead of learning Django? Is there a good book or online source that builds a pure Python site in a tutorial fashion?
An example: Currently the search box only searches whole last names. One person I demoed wanted to see search suggestions so that he can search for names he doesn't exactly remember the spelling. Will this be easier to implement in Django or in Python?
I am new both to Python and Django.
Thank you