These are the files of a Python program (a.k.a. App 8) built in the Udemy course "The Complete Python Course in the Professional OOP Approach." The course covers how to make this program step by step, plus nine other Python programs. If you want to learn Python, you can take the course for a high discount in the link below: https://www.udemy.com/course/the-python-pro-course/?referralCode=D1224FDF916B73D7E740
The program is written in Python. This is a web app that lets users type in a term in a text box and returns the English definition of that term instantly as soon as the user has finished typing. The web app consists of a website with a navigation menu, a Home, Dictionary, and About page.
- Either clone this repo or download all these files by going to Code -> Download ZIP.
- Create a PyCharm (or other IDE) project and configure a Python interpreter for the project.
- Open the terminal and install the required packages by running:
pip install -r requirements.txt
- Run main.py with Python.
- Go to http://127.0.0.1:8001 in your internet browser to see the web app.