I am just beginning learning Django and working through the tutorial, so sorry if this is very obvious.
I have already a set of Python scripts whose ultimate result is an sqlite3 db that gets constantly updated; is Django the right tool for turning this sqlite db something like a pretty HTML table for a website?
I can see that Django is using an sqlite db for managing groups/users and data from its apps (like the polls app in the tutorial), but I'm not yet sure where my external sqlite db, driven by my other scripts, fits into the grand scheme of things?
Would I have to modify my external python scripts to write out to a table in the Django db (db.sqlite3 in the Django project dir in tutorial at least), then make a Django model based on my database structure and fields?
Basically,I think my question boils down to:
1) Do I need to create Django model based on my db, then access the one and only Django "project db", and have my external script write into it.
2) or can Django utilise somehow a seperate db driven by another script somehow?
3) Finally, is Django the right tool for such a task before I invest weeks of reading...
sqlitecommand and execute.mode htmland then.dump. You could then proceed to modify styles, etc. If you think that you'll need to do more in the future (if in doubt, you probably will), then using Django may be appropriate.