<div>Spent the last 30 mins looking at webpy. At the outset, looks pretty good/attractive, however, I&#39;m yet to see a very professional / complex website developed using WebPy. WebOS might&#39;ve been good, but looks like it&#39;s shut down, and the next best is <a href="http://jottit.com">jottit.com</a> ... </div>

<div>&nbsp;</div>
<div>Anyhow, as you say, this simplistic anti-framework might be a better place to start.<br>&nbsp;</div>
<div><span class="gmail_quote">On 7/24/08, <b class="gmail_sendername">Pradeep Gowda</b> &lt;<a href="mailto:pradeep@btbytes.com">pradeep@btbytes.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid"><span class="q"><br>On Jul 24, 2008, at 10:11 AM, Banibrata Dutta wrote:<br><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">On your Windows plaf. you could start by installing ActivePython from ActiveState website....<br>It comes with SQLlite (Python2.6&#39;s default packaging)... and should be good enough to get you going for some basic DB apps.<br>
You could download/install Django as well... for some web-framework development.<br><br>However if you insist on mysql and CGI based programming, you could download the MySQL windows installer and install it, and the Python bindings for Mysql.<br>
<br>These are advice from a non-practising ex-programmer :) so details might be a bit fuzzy.<br><br><br>On 7/24/08, Vishal &lt;<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:vsapre80@gmail.com" target="_blank">vsapre80@gmail.com</a>&gt; wrote:<br>
What is the easiest way to start experimenting with Python offerings for Web development on a Windows platform?<br><br>What things will I need to get my self going for displaying a simple webpage using Python based database access (say MySql)?<br>
<br>Could somebody list the things (softwares) required? point me to a good web development tutorial...<br><br>Would like to start with simple CGI and then go on to Web 2.0 kind of path...<br></blockquote><br><br></span>From a practicing web-programmer -- the better way to start web programming today is web.py <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://webpy.org/" target="_blank">http://webpy.org</a><br>
Its close enough to CGI in the sense that you don&#39;t have to understand frameworks, MVC, MTV (as in Django), at the same<br>time you don&#39;t have to &nbsp;reinvent the wheel for db handling, templating, handling requests, sessions etc.<br>
<br>Once you grok &quot;web programming&quot;, look around. The choices are endless.. After all we are pythonistas.<br>we don&#39;t have religions masquerading as web frameworks.<br><br>Saying Hello world in web.py is as simple as:<br>
-------------------<br>import web<br><br>&nbsp;urls = (<br>&nbsp; &nbsp; &nbsp;&#39;/(.*)&#39;, &#39;hello&#39;<br>&nbsp;)<br><br>&nbsp;class hello:<br>&nbsp; &nbsp; &nbsp;def GET(self):<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print &#39;Hello world!&#39;<br><br>&nbsp;if __name__ == &quot;__main__&quot;: web.run(urls, globals())<br>
-------------------<br><br>Pradeep Kishore Gowda<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://pradeepgowda.com/" target="_blank">http://pradeepgowda.com</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:pradeep@btbytes.com" target="_blank">pradeep@btbytes.com</a><br>
+1-317-489-2272 (Mobile) 
<div><span class="e" id="q_11b5577cfc9e9adc_2"><br><br>_______________________________________________<br>BangPypers mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:BangPypers@python.org" target="_blank">BangPypers@python.org</a><br>
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://mail.python.org/mailman/listinfo/bangpypers" target="_blank">http://mail.python.org/mailman/listinfo/bangpypers</a><br></span></div></blockquote></div>
<br><br clear="all"><br>-- <br>regards,<br>Banibrata<br><a href="http://www.linkedin.com/in/bdutta">http://www.linkedin.com/in/bdutta</a><br><a href="http://octapod.wordpress.com">http://octapod.wordpress.com</a>