vote up 5 vote down star
4

Considering the criteria listed below, which of Python, Groovy or Ruby would you use?

  • Criteria (Importance out of 10, 10 being most important)
  • Richness of API/libraries available (eg. maths, plotting, networking) (9)
  • Ability to embed in desktop (java/c++) applications (8)
  • Ease of deployment (8)
  • Ability to interface with DLLs/Shared Libraries (7)
  • Ability to generate GUIs (7)
  • Community/User support (6)
  • Portability (6)
  • Database manipulation (3)
  • Language/Semantics (2)
flag

67% accept rate

16 Answers

vote up 14 vote down check

I think it's going to be difficult to get an objective comparison. I personally prefer Python. To address one of your criteria, Python was designed from the start to be an embeddable language. It has a very rich C API, and the interpreter is modularized to make it easy to call from C. If Java is your host environment, you should look at Jython, an implementation of Python inside the Java environment (VM and libs).

link|flag
vote up 0 vote down

Having worked with all 3 of them, this is what I can say:

  • Python

    • has very mature libraries
    • libraries are documented
    • documentation can be accessed from your debugger/shell at runtime through the docstrings
    • you can develop code without an IDE
  • Ruby

    • has some great libraries ( even though some are badly documented )
    • Ruby's instrospection mechanisms are great. They make writing code pretty easy ( even if documentation is not available )
    • you can develop code without an IDE
  • Groovy

    • you can benefit from everything Java has to offer
    • syntax is somewhat inspired from Ruby
    • it's hard to write code without an IDE. You have no way to debug stuff from your console ( this is something you can easily do in Python/Ruby ) and the available Groovy plugins have a lot of catching up to do. I wrote some apps using Groovy and as they get bigger I regret not going with Ruby/Python ( debugging would have been WAY more easier ). If you'll only develop from an IDE, Groovy's a cool language.
link|flag
vote up 0 vote down

From your critera, I'd pick JRuby:

  • Richness of API/libraries available (eg. maths, plotting, networking) (9)

Everything the JVM has access to, which is a lot

  • Ability to embed in desktop (java/c++) applications (8)

Excellent Monkeybars framework, which lets you design a swing GUI in your GUI designer, and then wire it up using clean ruby code

  • Ease of deployment (8)

Rawr can package your app as an executable jar

  • Ability to interface with DLLs/Shared Libraries (7)

Java shared libraries easily, C ones via jna + libffi

  • Ability to generate GUIs (7)

Swing just works. Not sure how easy it is to use QtJambi, but it's definitely possible.

  • Community/User support (6)

Lots. Ruby has an excellent community.

  • Portability (6)

Everywhere the JVM works

  • Database manipulation (3)

All the ruby database libraries and all the java ones

  • Language/Semantics (2)

Here's where ruby takes the definite lead over groovy and python. The language has had some really beautiful design decisions taken early on, which shows up in the consistency and power of the standard library. Blocks, in particular, make it a joy to use.

link|flag
vote up 0 vote down

Nah... Groovy just looks and feels like Java..

I don't like to type all that Java lines "AGAIN".. just like what I did in 2001.

link|flag
vote up 0 vote down

Your comparing a compiled bytecode language vs. scripting language.

Groovy doesn't seem to be that scriptable, with all that lines of codes suddenly I felt I was brought back in 2001.

link|flag
vote up 1 vote down

Groovy? I'm just picking it up; try this (inside the groovyconsole):

File.metaClass.invokeMethod = { String name, args ->
    System.out.print ("Call to $name intercepted...");
    File.metaClass.getMetaMethod(name, args).invoke(delegate, args);
}

new File("c:/temp").eachFile{
    if (it.isFile()) println it.canonicalPath
}

The first code is AOP. All calls to any method of File object will be intercepted. No additional tools required. This is executed against existing Java class dynamically.

In the second block, you remove the 'f' closure parameter. Being just one parameter, it defaults to the built in "it" variable available to the closure context.

Here is what you get:

"Call to isFile intercepted...C:\temp\img.jpg"

etc.

link|flag
vote up 1 vote down

try Groovy .. it has all features that you need there. You can use existing java lib without any modification on its classes. basically .. groovy is java++, it is more dynamic and fun to learn (just like ruby)

I dont like ruby or python syntax so I will put them behind. Groovy is just like C/C++ syntax so I like him lol :)

link|flag
vote up 0 vote down

ruby has jruby with access to...something of the java internals, if necessary.

link|flag
vote up 1 vote down

For a java programmer, the obvious choice is Groovy.

Whenever you forget the Groovy syntax, simply use basic java.

link|flag
vote up 1 vote down

Perl? Yikes.

As someone has observed Perl is like a big explosion in a punctuation factory. It's terseness is not an advantage if the resultant code is not self documenting.

Have used Groovy for some utility tasks, easy to get going. Full access to Java libraries, plus some cool addtions to it, like listing the files in a directory using a closure:

// process all files printing out full name (. and .. auto excluded)

new File(basedir).eachFile{ f->

    if (f.isFile()) println f.canonicalPath
}
link|flag
vote up 0 vote down

You don't give a target OS, but if it's Windows, for that list I'd use .Net: C#, VB, whatever you feel most comfortable with. Bear in mind that my personal language of choice is Ruby, by the way. Away from Windows, I'd have to put Java as a starting point.

I'm not sure what's meant by the embedding requirement, but it's worth noting that within the .Net world there are IronPython and IronRuby - the former is probably somewhat more mature.

link|flag
vote up 3 vote down

Python has all nine criteria. It scores a 56.

I'm sure Ruby has everything Python has. It seems to have fewer libraries. So it scores a 51.

I don't know if Groovy has every feature.

Since Python is 56 and Ruby is a 51, Python just barely edges out Ruby.

However, I think this kind of decision can still boil down to some subjective issues outside these nine criteria.

link|flag
With all respect, I don't think Ruby has the same amount of libraries as Python has, not to mention Groovy. If I e.g. take Ubuntu packages (including multiverse, which means basically it's Debian packages), there 920 package names with Python and 464 with Ruby. Groovy has no 3rd party libraries. – J S Nov 29 '08 at 2:27
Update: I looked at Rubyforge and PyPI and it it seems to support this estimate that Python has almost twice as more libraries than Ruby. – J S Nov 29 '08 at 2:35
vote up 9 vote down

Just to muddy the waters...

Groovy give you access to Java. Java has an extremely rich set of APIs/Libraries, applications, etc.

Groovy is embeddable, although easiest in Java.

DLLs/Libraries (if you're talking about non-Groovy/Java) may be somewhat problematic, although there are ways and some APIs to help.

I've done some Python programming, but being more familiar with Java, Groovy comes a lot easier to me.

link|flag
vote up 1 vote down

This sort of adding-up-scores-by-features is not a good way to choose a programming language. You'd be better off choosing whichever you know the best. If you don't know any of them, try them out for a little while. If you have a really specific project in mind, then maybe some programming languages would be better, but if you just have general preferences you will never come to a consensus.

That said, Python is pretty flexible, it's the most popular on your list so the easiest to solve whatever sorts of problems you have by searching, so I'd recommend Python.

link|flag
vote up 1 vote down

I think you missed one criterion:

  • Familiarity among project team (10)
link|flag
I think any programmer worth his salt should be able to get his feet wet with any procedural or OO language with only one hour of tutelage by an experienced team member, and be productive within a work week. If a language or tool is best for the job, the cost of learning should be no object. – Pistos Nov 3 '08 at 2:00
Project team is equally unfamiliar with all 3! Looking to invest time to learn one of the 3. – Prembo Nov 3 '08 at 2:02
Prembo: fair enough answer. :) – Greg Hewgill Nov 3 '08 at 2:09
vote up 1 vote down

I know it's not on your list, but at least look at perl.

  • Richness of Api/Libraries to sink a ship.
  • Runs on more systems than most people realise exists.
  • Works well with Binary libraries.
  • Has a huge community.
  • Portability, See above.
  • Database manipulation: more ways to do it. ( Pick your favorite module )
  • And one of the most expressive/terse languages around.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.