Introduction to SQLite

In this tutorial, we will learn Introduction to SQLite. SQLite is a lightweight and serverless database which we can use in Python application to store data. A very big benefit of using SQLite is we don’t need any other database server software like XAMPP.

The amazing thing is we can use SQLite version 3 in python applications using sqlite3 module. We don’t need to download the sqlite3 module separately. Because it is part of Python version 2.5x and onwards.

What We will Do.

In this SQLite series. We will create a small login, signup application with the help of the SQLite database. in First two tutorials, we will create the graphical user interface(Application Layout) for the user using Tkinter library and in the last tutorial, we will write code to implement SQLite database in our application.

Spread the love
Scroll to Top