[Answered ]-Combining a PyQt Gui app with an Django project

2πŸ‘

βœ…

For what I understand, you want to publish some of the data in your SQLite databases via a website. This is a perfectly valid use of Django and it is totally feasible.

However, this is not the typical way to use Django: you see, Django projects typically define their database structures automatically using abstraction classes (called models in the Django terminology). If you want to use your existing database, that is perfectly fine and possible but it requires some reading. Make sure you read the basic Django tutorials and then check out this document: Integrating django with legacy databases

πŸ‘€Sam F

Leave a comment