Skip to content

Instantly share code, notes, and snippets.

View akincan-kilic's full-sized avatar

Akın Kılıç akincan-kilic

  • Viable
  • Turkey
  • 22:46 (UTC +03:00)
View GitHub Profile
@akincan-kilic
akincan-kilic / PyDa.py
Created July 25, 2020 08:04 — forked from KhanradCoder/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)