What do I need to know in order to write a web application in python?

Santoso Wijaya santoso.wijaya at gmail.com
Fri Mar 4 17:09:25 EST 2011


GUI application is a whole other matter entirely. For that, you might want
to look into cross-platform GUI toolkits with Python bindings. E.g., PyQT
[1], wxPython [2], TkInter [3], etc. Python, after all, is just a
cross-platform language. To do all those user-friendly bells and whistles,
you'd need to use the appropriate framework(s) that Python can work with.

~/santa

[1] http://wiki.python.org/moin/PyQt
[2] http://www.wxpython.org/
[3] http://wiki.python.org/moin/TkInter


On Fri, Mar 4, 2011 at 1:48 PM, ErichCart ErichCart <erichcart at gmail.com>wrote:

> By real-time, I mean that I want it to be similar to the way instant
> online chess works. Something like here: instantchess.com, but for
> RISK.
>
> I thought about making such an application, and now that I want to
> practice python I thought that perhaps it can be done with python.
> Now after your answers it seems like a hard task not suitable for a
> beginner.
>
> But really, I just want to make something useful with python. All I
> can do now, is console programs, and that doesn't seem very user
> friendly.
>
> In fact this doesn't necessary need to be web application. For example
> I have a friend who uses Delphi, and he can create all sorts of
> windows applications easily, like he can see the window on the screen
> and he can place buttons, text fields, radio buttons etc. wherever he
> wants and then program the actions of each element. I was able to do
> the same with visual basic in one of my university classes.
>
> What do I need to know in order to be able to do the same with python?
> Which python modules/python development environments do I need to use?
> --
> http://mail.python.org/mailman/listinfo/python-list
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20110304/697c8c96/attachment.html>


More information about the Python-list mailing list