Where to view SQLite tables Django created?
Run python manage.py dbshell
and this will open your db client with the current database settings.
You need to have sqlite3 installed on your path. Alternatively, you can use an online browser like https://sqlitebrowser.org/ . Simply drag and drop the db.sqlite3 file from the django project root folder and you should be able to see all the tables or run queries. Finally, you can set up to view the tables on admin.