vote up -1 vote down star

Does Python seem to have greater library support than ruby? (For example, their OWL and RDF libraries seem much more developed. Is this true in general?)

flag

5  
One needs to remember that Python is a bit older than Ruby too, which probably matters. – Skurmedel Jun 12 at 17:01
1  
@Skurmedel - I doubt you'd find much of a correlation between the age of a language and its popularity. – Triptych Jun 12 at 17:56
@Triptych: No, but age and library support are related. The longer a language has been around, the more time it's had to accumulate libraries. – Chuck Jun 12 at 23:54
'Is Python a better language than ruby' is a subjective question. The question of library support is actually an objective question capable (in principle) of verification. I think from looking about that Chuck is right - its an older language that's been invested in more (and Google's support gives it active libraries for things like RDF which ruby doesn't posses). Not all debated comparison are subjective (though many are) – Daniel Jun 13 at 0:43
@Chuck: Age and library support are related to an extent, but I would say age is not as strong a factor as popularity. Ruby is older than Java, believe it or not. And Scheme is WAY older than both of them! – John Y Jun 13 at 1:36

3 Answers

vote up 3 vote down

Python is, in general, a much more mature language than Ruby in my opinion, and as a result, many more developers have been encouraged others to develop mature libraries.

Ruby has recently seen a resurgence with the popularity of Rails, but a single MVC framework is a rather narrow use of a language. Conversely, Python is much more popular than Ruby for doing just about everything else, and is beginning to compete with Rails with solutions like django, as well as the Google App Engine.

Python's consistent use over the years, and its popularity in the scientific community, has spurned a lot of library development. Additionally, and perhaps most important, Python's well-designed C API has made it relatively easy to port a lot of C libraries to Python.

link|flag
I notice a lot of Pythonistas seem to say this, but it seems more like tunnel vision than anything else to me. You use Python, so you see all the little things it's used for. You don't use Ruby, so you only see the most prominent use. – Chuck Jun 12 at 23:56
1  
@Chuck - prove me wrong. – Triptych Jun 13 at 0:24
How am I supposed to prove you wrong? You didn't even prove yourself right. You just stated, without evidence, that Python is used for lots of things and Ruby isn't. I said that I think your perspective is limited by your experience. For one example of Ruby without Rails, Apple has officially endorsed Ruby as an application programming language on Mac OS X -- they're even actively helping in the language's development. I have a lot of non-Rails Ruby code that I use all the time. – Chuck Jun 13 at 16:23
Chucbk - here's some anecdotal evidence: tiobe.com/index.php/paperinfo/… Note the tremendous surge right around the time Ruby on Rails caught on. – Triptych Jun 13 at 17:09
vote up 1 vote down

Python in general is more mature than ruby (ruby appeared in the Englih-speking worlds only in this century), but in terms of libraries one can only say: it depends. There are a lot of libraries that are more mature and usable on ruby, but for some other cases you should stick with Python. Generaly rubyists tend to go on one way (good example is that their YAML implementation is very good, but XML support was always left behind (weel, at least until libxml-ruby was reincarnated) ). Imho python is better for mathematical stuff, and for working with C/C++ applications while ruby is better for everyday scripting and creating simple web applications.

link|flag
vote up 0 vote down

I can't answer for everything, but the library support for scientific and mathematic libraries in Python is much greater than that for Ruby. Things like matplotlib, scipy and numpy make Python almost equivalent to Matlab for these areas.

link|flag

Your Answer

Get an OpenID
or

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