Skip to content

Instantly share code, notes, and snippets.

View NicolasFlandrois's full-sized avatar

Nicolas Flandrois NicolasFlandrois

View GitHub Profile
@KhanradCoder
KhanradCoder / PyDa.py
Created April 11, 2020 01:21
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)