简体   繁体   中英

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.

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/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM