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 os | |
import re | |
def main(): | |
modpath = os.path.join(r'C:\Users\sokka\Documents\Paradox Interactive\Stellaris\mod\better_queue') | |
installpath = os.path.join(r'C:\Games\Stellaris') | |
scrfile = os.path.join(r'common\buildings', '01_pop_assembly_buildings.txt') | |
#scrfile = os.path.join(r'common\colony_automation', '00_capital_automation.txt') |
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
#following instructions from https://github.com/mozilla/TTS/blob/master/notebooks/Benchmark.ipynb | |
#%load_ext autoreload | |
#%autoreload 2 | |
import os | |
import sys | |
import io | |
import time | |
import numpy as np | |
#pip3 install --user numpy |
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 os | |
import sys | |
import zipfile | |
import time | |
import re | |
import urllib3 | |
from dataclasses import dataclass | |
from bs4 import BeautifulSoup |