Python web development - with or without a framework - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T13:09:27Z http://stackoverflow.com/feeds/question/136069 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework 6 Python web development - with or without a framework Crad 2008-09-25T20:59:49Z 2009-09-17T02:47:39Z <p>I am planning on porting a PHP application over to Python. The application is mostly about data collection and processing. The main application runs as a stand alone command line application. There is a web interface to the application which is basically a very light weight reporting interface. </p> <p>I did not use a framework in the PHP version, but being new to Python, I am wondering if it would be advantageous to use something like Django or at the very least Genshi. The caveat is I do not want my application distribution to be overwhelmed by the framework parts I would need to distribute with the application. </p> <p>Is using only the cgi import in Python the best way to go in this circumstance? I would tend to think a framework is too much overhead, but perhaps I'm not thinking in a very "python" way about them. What suggestions do you have in this scenario?</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136152#136152 4 Answer by kigurai for Python web development - with or without a framework kigurai 2008-09-25T21:07:44Z 2008-09-25T21:07:44Z <p>Depends on the size of the project. If you had only a few previous php-scripts which called your stand alone application then I'd probably go for a cgi-app.</p> <p>If you have use for databases, url rewriting, templating, user management and such, then using a framework is a good idea.</p> <p>And of course, before you port it, consider if it's worth it just to switch the language or if there are specific Python features you need.</p> <p>Good luck!</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136166#136166 0 Answer by Alphager for Python web development - with or without a framework Alphager 2008-09-25T21:11:08Z 2008-09-25T21:11:08Z <p>It depends on the way you are going to distribute your application.<br /> If it will only be used internally, go for django. It's a joy to work with it. However, django really falls short at the distribution-task; django-applications are a pain to set up.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136188#136188 10 Answer by S.Lott for Python web development - with or without a framework S.Lott 2008-09-25T21:14:33Z 2008-09-25T21:14:33Z <p>The command-line Python, IMO, definitely comes first. Get that to work, since that's the core of what you're doing.</p> <p>The issue is that using a web framework's ORM from a command line application isn't obvious. Django provides specific instructions for using their ORM from a command-line app. Those are annoying at first, but I think they're a life-saver in the long run. I use it heavily for giant uploads of customer-supplied files.</p> <p>Don't use bare CGI. It's not impossible, but too many things can go wrong, and they've all been solved by the frameworks. Why reinvent something? Just use someone else's code.</p> <p>Frameworks involve learning, but no real "overhead". They're not slow. They're code you don't have to write or debug.</p> <ol> <li><p>Learn some Python.</p></li> <li><p>Do the <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">Django</a> tutorial.</p></li> <li><p>Start to build a web app.</p> <p>a. Start a Django project. Build a small application in that project.</p> <p>b. Build your new model using the Django ORM. Create a Django unit test for the model. Be sure that it works. You'll be able to use the default admin pages and do a lot of playing around. Just don't build the <em>entire</em> web site yet.</p></li> <li><p>Get your command-line app to work using Django ORM. Essentially, you have to finesse the settings file for this app to work nicely. See the <a href="http://docs.djangoproject.com/en/dev/topics/settings/#topics-settings" rel="nofollow">settings/configuration</a> section. </p></li> <li><p>Once you've got your command line and the default admin running, you can finish the web app.</p></li> </ol> <p>Here's the golden rule of frameworks: <strong>It's code you don't have to write, debug or maintain.</strong> Use them.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136234#136234 2 Answer by Big Dave Diode for Python web development - with or without a framework Big Dave Diode 2008-09-25T21:22:30Z 2008-09-25T21:22:30Z <p>I recently ported a PHP app to Python using <a href="http://webpy.org/" rel="nofollow">web.py</a>. As frameworks go it is extremely lightweight with minimal dependencies, and it tends to stay out of your way, so it might be the compromise you're looking for. </p> <p>It all depends on your initial application though, because with a large application the advantages of having a full-featured framework handling the plumbing tend to outweigh the disadvantages involved in having to drag around all the framework code.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136683#136683 1 Answer by camflan for Python web development - with or without a framework camflan 2008-09-25T22:47:33Z 2008-09-25T22:47:33Z <p>Django makes it possible to whip out a website rapidly, that's for sure. You don't need to be a Python master to use it, and since it's very pythonic in it's design, and there is not really any "magic" going on, it will help you learn Python along the way.</p> <p>Start with the examples, check out some django screencasts from TwiD and you'll be on your way.</p> <p>Start slow, tweaking the admin, and playing with it via shell is the way to start. Once you have a handle on the ORM and get how things work, start building the real stuff!</p> <p>The framework isn't going to cause any performance problems, like S. Lott said, it's code you don't have to maintain, and that's the best kind.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136804#136804 7 Answer by Andrew Gwozdziewycz for Python web development - with or without a framework Andrew Gwozdziewycz 2008-09-25T23:17:24Z 2008-09-25T23:17:24Z <p>You might consider using something like <a href="http://webpy.org/" rel="nofollow">web.py</a> which would be easy to distribute (since it's small) and it would also be easy to adapt your other tools to it since it doesn't require you to submit to the framework so much like Django does. </p> <p>Be forewarned, however, it's not the most loved framework in the Python community, but it might be just the thing for you. You might also check out <a href="http://mdp.cti.depaul.edu/" rel="nofollow">web2py</a>, but I know less about that.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/138888#138888 1 Answer by e-satis for Python web development - with or without a framework e-satis 2008-09-26T11:31:45Z 2008-09-26T11:31:45Z <p>Go for a framework. Basic stuffs like session handling are a nightmare if you don't use a one because Python is not web specialized like PHP.</p> <p>If you think django is too much, you can try a lighter one like the very small but still handy web.py.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/1436495#1436495 0 Answer by Gabriel for Python web development - with or without a framework Gabriel 2009-09-17T02:47:39Z 2009-09-17T02:47:39Z <p>For the love of pete, use a framework! There are literally dozens of frameworks out there, from cherrypy to django to albatross to ... well.. you name it. In fact, the huge number of web frameworks are what people point to when they whine about the popularity of Rails. </p> <p>The Python web development community is divided up with no single voice. But that's another topic alltogether! The point is, there are "web toolkits" (e.g. albatross) that are fairly lightweight but powerful enough to get you through the day (e.g. auto-verifying a bot didn't do a simple form submission fake, or helping with keeping MVC clean).</p> <p>If you want something that's not "too much framework" look here:</p> <p><a href="http://wiki.python.org/moin/WebFrameworks" rel="nofollow">http://wiki.python.org/moin/WebFrameworks</a></p> <p>Look under "Basic Frameworks Providing Templating". They're all lightweight and do all the "don't reinvent the wheel" stuff without forcing a Mac truck on you.</p>