Skip to content

Instantly share code, notes, and snippets.

@adithyapb
adithyapb / PyDa.py
Created August 3, 2021 04:59 — forked from adameubanks/PyDa.py
Code for the video where we build a Jarvis like virtual assistant in python 3
import wolframalpha
client = wolframalpha.Client("lilpumpsaysnopeeking")
import wikipedia
import PySimpleGUI as sg
sg.theme('DarkPurple')
layout =[[sg.Text('Enter a command'), sg.InputText()],[sg.Button('Ok'), sg.Button('Cancel')]]
window = sg.Window('PyDa', layout)