ORM in Python similar to Django

4

I studied the framework Django a long time and found that ORM of it was excellent.

I had the idea at some point to build an application with another framework called Flask , using a framework similar to Django .

I searched, but could not find much.

I would like to know two things:

  • Is there a database framework (ORM) similar to the ORM of Django ?

asked by anonymous 09.05.2016 / 18:01

1 answer

5
  

Is there a database framework (ORM) similar to Django's ORM?

Yes, call SQLAlchemy .

It has a version for Flask .

  

Is it possible to use the Django framework, without specifically depending on the entire framework being installed (just install the Django ORM package, I mean)?

Apparently, yes .

    
09.05.2016 / 18:05