filmov
tv
Python GUI Tutorial - 35 - search app - part 2

Показать описание
In this video, you'll learn how we can make a simple search app using tkinter and wikipedia api.
code used in this video -
from tkinter import *
import wikipedia
def get_me():
try:
except:
root = Tk()
topframe = Frame(root)
entry = Entry(topframe)
button = Button(topframe, text="search", command=get_me)
bottomframe = Frame(root)
scroll = Scrollbar(bottomframe)
------------------------------------------------------
so i'm sure your queries like -
- how to make search app in tkinter Python?
-how to make question answer application in tkinter Python?
- how to use wikipedia API in Python?
- what is the use of wikipedia api in Python?
- how to make executable file in tkinter Python?
- how to make exe file for a gui app in Python?
- how to install wikipedia api in python?
- how to develop gui application in Python?
- how to fetch information from wikipedia to Python program?
have been solved.
if you have any problem related to this video then please let us know in comments.
contact us-
code used in this video -
from tkinter import *
import wikipedia
def get_me():
try:
except:
root = Tk()
topframe = Frame(root)
entry = Entry(topframe)
button = Button(topframe, text="search", command=get_me)
bottomframe = Frame(root)
scroll = Scrollbar(bottomframe)
------------------------------------------------------
so i'm sure your queries like -
- how to make search app in tkinter Python?
-how to make question answer application in tkinter Python?
- how to use wikipedia API in Python?
- what is the use of wikipedia api in Python?
- how to make executable file in tkinter Python?
- how to make exe file for a gui app in Python?
- how to install wikipedia api in python?
- how to develop gui application in Python?
- how to fetch information from wikipedia to Python program?
have been solved.
if you have any problem related to this video then please let us know in comments.
contact us-
Комментарии