top button
Flag Notify
Site Registration

Web development in python without using any webframework

0 votes
362 views

I want to use python for creating dynamic database driven websites. and I don't want to use existing web frameworks for my work. I am learning things so I wont feel lazy to write all the code myself because I want to learn.

could anyone suggest me any books/site from where I can start. I want to follow MVC architecture. so please suggest me some links/book or anything

posted Aug 3, 2013 by Meenal Mishra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

I believe the best way to go about this is by reading and learning from other frameworks and learning how others implement core aspects of a particular approach or routine by building dynamic web frameworks.

This will not only will help you learn from a working example but you will also learn how to improve upon things and make improvements over time. I would start with a simple framework like flask. Flask is extremely simple easy to use and high extendable.

If one wanted to learn about building cars they wouldn't start off with spare car-parts and a engine manual -- you would be better of taking apart an old Civic and learning about the inner workings and try putting it back together this is just my 2 cents.

answer Aug 3, 2013 by Jagan Mishra
0 votes

You likely want to use some (existing) web server (and not develop this as well)? In this case, you could look at WSGI ("Web Server Gateway Interface"). It is a specification intended to interface between a web server and a web application - with the motivation to facilitate factoring out common tasks (session handling, authentication, authorization, output transformations, ...).

answer Aug 3, 2013 by Amit Parthsarthi
Similar Questions
+1 vote

I have learnt python and used it for various purposes for scietific computing using sage and GUI development using Tkinter and lots more. I want to start web development using python My goal is to learn the web development in python from the basic level and understand the big web development projects like Django , MoinMoin Wiki , Plone and network programming further with twisted.
I have found Web2Py to be an easy library to quickly use and develop the web application. Is there any other library to start my development with. anddoes my plan of learning Web2Py is good for Web development and getting involved in the big projects like Django , MoinMoin Wiki , Plone.

0 votes

Which of the following function in PHP returns the number of characters in a string variable ?

...