SQLite is an embedded SQL database that contains a C library. It is not a client-server database and instead embeds directly into the end program. SQLite follows PostgreSQL syntax. To connect with SQLite from Python, you import the sqlite3 module and use the connect() method to create a Connection object. From there you can create a Cursor object to execute SQL statements like CREATE TABLE, INSERT, SELECT, WHERE, ORDER BY, UPDATE, and DELETE.