Skip to content

A simple Python application where dictionary where you can add a new word and its translation to the list.

Notifications You must be signed in to change notification settings

nenalukic/python-dictionary-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Dictionary App

This program is a dictionary where you can add a new word and its translation to the list. You can also save and delete words.

To use this program, you will need a database. You can create one using PostgreSQL.

Here's how you can get started:

  • Login to the database: psql postgres postgres

  • Create a new database: create database dict;

  • Create a user: create user dict with password 'abc123';

  • Grant user rights: grant all privileges on database dict to dict;

  • Logout: \q

  • Login to the new database: psql dict dict

After that, open the terminal and run python dict.py to start the program.

About

A simple Python application where dictionary where you can add a new word and its translation to the list.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages