Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GUI interface for sqlite data entry in Python

Tags:

I am making a simple sqlite database for storing some non-sensitive client information. I am very familiar with python+sqlite and would prefer to stick with this combo on this project. I would like to create an simple GUI interface for data entry and searching of the database... something very similar to what MS Access provides. I want my wife to be able to enter/search data easily, so PHPmyadmin style things are out of the question.

I understand I could just give in and get MS Access, but if reasonbly possible would rather just write the code myself so it will run on my computers (*nix) and is flexible (so I can later integrate it with a web application and our smart phones.)

Can you developers recommend any interfaces/packages/etc (preferably pythonic) that can accomplish this with reasonable ease?

Thanks!

like image 326
Geraldo Avatar asked Jun 29 '11 00:06

Geraldo


People also ask

How do you display data from a database in python GUI?

We will use one tkinter entry component to display each data in the window. In this variable student is a tuple and it contains one row of data. We used variable i as index for each row and variable j as each column of data. The full code is here , Change the userid,password and database name of your MySQL database.

How do I display a SQLite table in Python?

List tables. To list all tables in an SQLite3 database, you should query the sqlite_master table and then use the fetchall() to fetch the results from the SELECT statement. The sqlite_master is the master table in SQLite3, which stores all tables.

How can u connect to SQLite using python?

Connecting to the SQLite Database can be established using the connect() method, passing the name of the database to be accessed as a parameter. If that database does not exist, then it'll be created.

How do I create a database in SQLite GUI?

To create a new database using DB Browser, simply click New Database to create a database for your data, give the database an appropriate name, and put it in the folder that you're using for your work on the project. You are then able to import data, create tables or indices as required.


1 Answers

Since you're interested in future integration with a web application, you might consider using a Python web framework and running the app locally on your machine, using your web browser as the interface. In that case, one easy option would be web2py. Just download, unzip, and run, and you can use the web-based IDE (demo) to create a simple CRUD app very quickly (if you really want to keep it simple, you can even use the "New application wizard" (demo) to build the app). It includes its own server, so you can run your app locally, just like a desktop app.

You can use the web2py DAL (database abstraction layer) to define and create your SQLite database and tables (without writing any SQL). For example:

db = DAL('sqlite://storage.db')  db.define_table('customer',     Field('name', requires=IS_NOT_IN_DB(db, 'customer.name')),     Field('address'),     Field('email', requires=IS_EMAIL())) 

The above code will create a SQLite database called storage.db and create a table called 'customer'. It also specifies form validators for the 'name' and 'email' fields, so whenever those fields are filled via a form, the entries will be validated ('name' cannot already be in the DB, and 'email' must be a valid email address format) -- if validation fails, the form will display appropriate error messages (which can be customized).

The DAL will also handle schema migrations automatically, so if you change your table definitions, the database schema will be updated (if necessary, you can turn off migrations completely or on a per table basis).

Once you have your data models defined, you can use web2py's CRUD system to handle all the data entry and searching. Just include these two lines (actually, they're already included in the 'welcome' scaffolding application):

from gluon.tools import Crud crud = Crud(db) 

And in a controller, define the following action:

def data():     return dict(form=crud()) 

That will expose a set of pre-defined URLs that will enable you to create, list, search, view, update, and delete records in any table.

Of course, if you don't like some of the default behavior, there are lots of ways to customize the CRUD forms/displays, or you can use some of web2py's other forms functionality to build a completely custom interface. And web2py is a full-stack framework, so it will be easy to add functionality to your app as your needs expand (e.g., access control, notifications, etc.).

Note, web2py requires no installation or configuration and has no dependencies, so it's very easy to distribute your app to other machines -- just zip up the entire web2py folder (which will include your app folder) and unzip it on another machine. It will run on *nix, Mac, and Windows (on Windows, you will either need to install Python or download the web2py Windows binary instead of the source version -- the Windows binary includes its own Python interpreter).

If you have any questions, there's a very helpful and responsive mailing list. You might also get some ideas from some existing web2py applications.

like image 188
Anthony Avatar answered Oct 13 '22 21:10

Anthony