Skip to content

Instantly share code, notes, and snippets.

@Especuloide
Especuloide / Multi_lines_Animation_Code.py
Last active August 6, 2021 19:09
Multi lines animation
import numpy as np
import matplotlib.animation as animation
from matplotlib import pyplot
from random import randint
fig, g = pyplot.subplots(figsize=(6,6))
pyplot.subplots_adjust(left = 0.0, right = 1.0, top = 1.0, bottom = 0.0)
@adameubanks
adameubanks / 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)