Python Forum
Create mvc ( web framework ) - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Create mvc ( web framework ) (/thread-20749.html)



Create mvc ( web framework ) - JohnnyCoffee - Aug-28-2019

I would like to learn how to develop a simple web framework (mvc) where I can get some material to study how to structure?


RE: Create mvc ( web framework ) - snippsat - Aug-28-2019

Look at Let’s Build A Web Server. Part 1 it's 3 part and the best i have seen on explaining this stuff.
Also look at Python on the Web and the Rise of WSGI

Python don't need an other web-framework Hand
A little joke,also some truth in it Wink

Can do it as an exercise but to make something that bring something new and better that eg Flask and Django is hard.
You can also take look at Vibora it looked promising and did bring in some new stuff,
but if look at Github is stopped develop for now.
Quote:This project is being completely re-written. If you're curious about the progress, reach me on Slack.



RE: Create mvc ( web framework ) - JohnnyCoffee - Aug-28-2019

(Aug-28-2019, 06:27 PM)snippsat Wrote: Look at Let’s Build A Web Server. Part 1 it's 3 part and the best i have seen on explaining this stuff.
Also look at Python on the Web and the Rise of WSGI

Python don't need an other web-framework Hand
A little joke,also some truth in it Wink

Can do it as an exercise but to make something that bring something new and better that eg Flask and Django is hard.
You can also take look at Vibora it looked promising and did bring in some new stuff,
but if look at Github is stopped develop for now.
Quote:This project is being completely re-written. If you're curious about the progress, reach me on Slack.

Thanks.