GGA
GGA

Reputation: 385

Django mezzanine vs Wordpress

I'm working on a project which will use python to collect data and display it in a blog like way.

I'm already familiar with Wordpress, my solution to import these data would be to manually edit SQL wordpress database with python and update the values of the single post according to my data.

I not very familiar with python and Django but i saw that Mezzanine is a sort of Wordpress for Django.

Would be easier or faster the data exchange between my Python script and a Mezzanine app or it's the same as between Python and SQL? I'd like to know also about performances.

Upvotes: 3

Views: 2156

Answers (1)

Håken Lid
Håken Lid

Reputation: 23064

Generally you don't need to write SQL when you work with Django, only native Python. Django has tools for inspecting an existing database and then generate python code that models that legacy database. https://docs.djangoproject.com/en/2.0/howto/legacy-databases/

Upvotes: 2

Related Questions