This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Basic Pygame | |
#Every thing you need in a Python/pygame program | |
#copyright 2015 (c) Tyler Spadgenske GPL 3.0 License | |
import pygame, sys, os | |
from pygame.locals import * | |
pygame.init() | |
WINDOWWIDTH = 800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyaudio | |
import wave | |
import audioop | |
from collections import deque | |
import os | |
import urllib2 | |
import urllib | |
import time | |
import math |