Connecting Tech Pros Worldwide Forums | Help | Site Map

Python's use in RAD

Ross Cowie
Guest
 
Posts: n/a
#1: Jul 19 '05
Hi,

I am currenly a second year university student and was wondering if you
could help me ut. As part of a project i have decided to write about python,
i am not having very much luck with regards to finding infrmation on pythons
use in Rapid Application Development, and was wondering of you could
highlight some of the features that make it suitable for RAD. Like the use
of dinamic binding.

Your healp would be appreciated.

Hope to hear from you soon.

Ross



Harry George
Guest
 
Posts: n/a
#2: Jul 19 '05

re: Python's use in RAD


"Ross Cowie" <ross1cowie@hotmail.com> writes:
[color=blue]
> Hi,
>
> I am currenly a second year university student and was wondering if
> you could help me ut. As part of a project i have decided to write
> about python, i am not having very much luck with regards to finding
> infrmation on pythons use in Rapid Application Development, and was
> wondering of you could highlight some of the features that make it
> suitable for RAD. Like the use of dinamic binding.
>
> Your healp would be appreciated.
>
> Hope to hear from you soon.
>
> Ross
>
>[/color]

Generally we don't do homework here. But we can give you pointers.

1. Searching google for "python RAD" shows 148,000 hits, and at least
the first few pages look relevant. Did you check?

2. "RAD" means different things to different people. Do you mean:
a) Agile/Extreme Programming (2 or more people working together)
b) Test-driven
c) GUI builder
d) Rapid edit-run cycle
e) Lots of libraries so your work is just hooking together existing tools
f) Dynamic, code-generated-on-the-fly, or other meta programming
g) Project management experience in life cycle flow times and labor costs

You need to understand your assignment in these terms, then you can
investigate Python.

3. As a practical matter, Python does "a"-"g" quite well. Originally
this was because of the rich-yet-clean syntax and batteries-included
libraries. These days those factors still count, but they are
enhanced by large numbers of "other" libraries and tools which have
Python bindings.

--
harry.g.george@boeing.com
6-6M21 BCA CompArch Design Engineering
Phone: (425) 294-4718
djw
Guest
 
Posts: n/a
#3: Jul 19 '05

re: Python's use in RAD


Ross Cowie wrote:[color=blue]
> Hi,
>
> I am currenly a second year university student and was wondering if you
> could help me ut. As part of a project i have decided to write about
> python, i am not having very much luck with regards to finding
> infrmation on pythons use in Rapid Application Development, and was
> wondering of you could highlight some of the features that make it
> suitable for RAD. Like the use of dinamic binding.
>
> Your healp would be appreciated.
>
> Hope to hear from you soon.
>
> Ross
>
>[/color]
I got plenty of info in < 1 min using Google and the query "python rad".
Does your university not have access to Google?

http://www.ukuug.org/events/linux200...nome-Talk.html
http://www.iol.ie/~padraiga/talks/pygtk/
http://www.linuxjournal.com/article/7421
http://pythonnotes.blogspot.com/2005...-web-apps.html
http://www.pythonology.com/success&story=philips
http://librenix.com/?inode=3701
http://linuxgazette.net/issue78/krishnakumar.html
http://www.pycs.net/lateral/stories/16.html
http://dot.kde.org/1073680602/
etc...etc...etc...
brian.peyton@gmail.com
Guest
 
Posts: n/a
#4: Jul 19 '05

re: Python's use in RAD


Active State's Komodo IDE is very nice for python development. It
includes integration with pdb (python's debugger). The pro edition
also has a GUI designer, however I've never used it. The personal
version for non commercial use can be had for $30 (and there's also a
30 day trial). They have windows, linux, and solaris versions.

Ross Cowie wrote:[color=blue]
> Hi,
>
> I am currenly a second year university student and was wondering if[/color]
you[color=blue]
> could help me ut. As part of a project i have decided to write about[/color]
python,[color=blue]
> i am not having very much luck with regards to finding infrmation on[/color]
pythons[color=blue]
> use in Rapid Application Development, and was wondering of you could
> highlight some of the features that make it suitable for RAD. Like[/color]
the use[color=blue]
> of dinamic binding.
>
> Your healp would be appreciated.
>
> Hope to hear from you soon.
>
> Ross[/color]

Jarek Zgoda
Guest
 
Posts: n/a
#5: Jul 19 '05

re: Python's use in RAD


Ross Cowie napisał(a):
[color=blue]
> I am currenly a second year university student and was wondering if you
> could help me ut. As part of a project i have decided to write about
> python, i am not having very much luck with regards to finding
> infrmation on pythons use in Rapid Application Development, and was
> wondering of you could highlight some of the features that make it
> suitable for RAD. Like the use of dinamic binding.[/color]

I develop applications in python on AS/400 really fast -- that is,
rapidly ("five to eight" times faster comparing to Java, even more when
comparing to RPG). Dynamic & strong typing, comprehensive standard
library and clean syntax makes Python ideal for RAD event on such
obscure platforms as i5 (formerly known as iSeries, formerly known as
AS/400).

For me, at least.

--
Jarek Zgoda
http://jpa.berlios.de/ | http://www.zgodowie.org/
Luis M. Gonzalez
Guest
 
Posts: n/a
#6: Jul 19 '05

re: Python's use in RAD


Check this out: http://pythoncard.sourceforge.net/

James
Guest
 
Posts: n/a
#7: Jul 19 '05

re: Python's use in RAD


brian.peyton@gmail.com wrote:[color=blue]
> Active State's Komodo IDE is very nice for python development. It
> includes integration with pdb (python's debugger). The pro edition
> also has a GUI designer, however I've never used it. The personal
> version for non commercial use can be had for $30 (and there's also a
> 30 day trial). They have windows, linux, and solaris versions.
>
> Ross Cowie wrote:[color=green]
> > Hi,
> >
> > I am currenly a second year university student and was wondering if[/color]
> you[color=green]
> > could help me ut. As part of a project i have decided to write[/color][/color]
about[color=blue]
> python,[color=green]
> > i am not having very much luck with regards to finding infrmation[/color][/color]
on[color=blue]
> pythons[color=green]
> > use in Rapid Application Development, and was wondering of you[/color][/color]
could[color=blue][color=green]
> > highlight some of the features that make it suitable for RAD. Like[/color]
> the use[color=green]
> > of dinamic binding.
> >
> > Your healp would be appreciated.
> >
> > Hope to hear from you soon.
> >
> > Ross[/color][/color]

I don't think he is asking for tools that he could use for creating GUI
apps. Instead he is asking for the features of Python that would make
it easier to build RAD tools to put in his homework.

Closed Thread