Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby on Rails equivalent in python [closed]

I've no experience with Ruby but I heard that Ruby on Rails is a great framework to build websites super fast. What's its equivalent in python? If there's none, which of the existing python website building frameworks come closer to it?

like image 694
KumarM Avatar asked May 03 '12 03:05

KumarM


People also ask

Is Python similar to Ruby on Rails?

The Ruby on Rails web framework is built using the Ruby programming language while the Django web framework is built using the Python programming language. This is where many of the differences lay. The two languages are visually similar but are worlds apart in their approaches to solving problems.

Can Python replace Ruby?

While there is potential, Ruby must tweak its machine learning and AI libraries to do as well as Python in this field. Ruby won't replace Python anytime soon. TLDR: Python is a long-standing resource for machine learning programming. Thinking about machine learning in the context of Ruby vs.

Which is better Python Django or Ruby on Rails?

In the battle of Django vs Ruby on Rails performance, it is observed that Rails is faster by 0.7%. It is because Rails has the advantage of a rich repository of amazing libraries and plugins to enhance the speed and eventually the performance of this framework.


2 Answers

I think Django is considered to be the Python equivalent to Rails. Both Django and Rails focus on rapid development.

To get you started, here are some related resources:

  • Official Django Website: http://www.djangoproject.com/
  • Official Documentation: http://docs.djangoproject.com/
  • A great book on Django development: http://www.djangobook.com/
like image 51
None Avatar answered Sep 28 '22 15:09

None


The Ruby on Rails equivalent for Python is Django.

It's a:

High-level Python Web framework that encourages rapid development and clean, pragmatic design.

I personally recommend Python Web Development with Django, as it is a good book for learning about Django (obviously).

You can learn more about Django, here: https://www.djangoproject.com/

like image 26
anonymous Avatar answered Sep 28 '22 15:09

anonymous