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
<?php | |
// Your GitHub username goes here. | |
$user = $_ENV['GITHUB_USER'] ?? ''; | |
// If using 2FA, you must create a Personal Access Token at https://github.com/settings/tokens | |
// The access token can be used in place of the password and should be revoked when no longer needed. | |
$password = $_ENV['GITHUB_PASSWORD'] ?? ''; | |
// This is the base URL to the GitHub API. |
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 sys | |
import os | |
import math | |
import urllib2 | |
import json | |
import time | |
import shutil | |
import uuid | |
from nbt import nbt # pip install nbt |