This file contains hidden or 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 os | |
import json | |
from typing import List, Tuple | |
from google.cloud import bigquery | |
class BQDatabase: | |
def __init__(self): | |
# Can be done implicitly in a Google Cloud Storage bucket |
This file contains hidden or 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
#!/usr/bin/python | |
import json, os, signal | |
path_to_config = '/Users/' + os.getlogin() + '/Library/Application Support/minecraft/launcher_profiles.json' | |
path_to_open = '/usr/bin/open' | |
path_to_minecraft = '/Applications/Minecraft.app' | |
# Enter your name as you want it to appear in-game | |
minecraft_name = raw_input('Choose your Minecraft name: ') |