How can I use Firebase as a database in a Django application?

4

I just created a Django project and would like to use Firebase instead of sqlite as a database. I searched in several places but could not find anywhere how to do the integration. Could someone help me?

    
asked by anonymous 07.12.2017 / 15:11

1 answer

2

According to the Django documentation in the databases part which can be read in the following link link :

Native databases are;

  • PostgreSQL
  • MYsql
  • SQLIte

And those supported by third parties are;

  • SAP SQL Anywhere
  • IBM DB2
  • Microsoft SQL Server
  • Firebird
  • ODBC
20.12.2017 / 21:53