Skip to content

Instantly share code, notes, and snippets.

View ThyReaper's full-sized avatar

Amy Ackermann ThyReaper

  • Blind Mind Studios
View GitHub Profile
@ThyReaper
ThyReaper / submit.py
Created May 30, 2016 03:30
Python script to upload code to Screeps
import urllib.request;
import json;
api = "https://screeps.com/api/user/code"
#Load account data
keys = open("key.txt");
account = keys.readline().strip("\n")
apikey = keys.readline().strip("\n")