I have a database, financials that has models created in django. In addition, it has other tables that were created for a python script that uses MySQLdb, and thus not in django. The python script needs the django tables to work. In addition, the django tables needs to use the tables created outside of django to work.
How would I import these tables to use in django, or do I need to re-write them in django? In addition, it is potentially 'un-safe' to have a database that combines django and non-django tables?