1
Fork 0

Added file for random fun bits of code

This commit is contained in:
Jake Howard 2015-05-10 13:10:39 +01:00
parent 709b17b7d8
commit 7f497f2b61
1 changed files with 13 additions and 0 deletions

13
eggs.py Normal file
View File

@ -0,0 +1,13 @@
import pygame, logging, urllib.request, io
from time import sleep
def r9k(window):
logging.warn("Look, you found a pepe!")
raw_image = urllib.request.urlopen("https://38.media.tumblr.com/avatar_2cd47bc1ad07_128.png").read()
image_file = io.BytesIO(raw_image)
image = pygame.transform.scale(pygame.image.load(image_file), window.get_size())
window.blit(image, (0,0))
font = pygame.font.SysFont(None, 30, bold=False)
window.blit(font.render("A rare pepe has been found. Alert R9k", True, (0,0,0)), (window.get_width()/2-150, window.get_height()/2))
pygame.display.update()
sleep(5)