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
[Preview] | |
Font=Helvetica | |
Color=$000000 | |
Text=The quick brown fox jumps over the lazy dog | |
Size=10 | |
[General] | |
Name=AW3423DW | |
PixelLayout=-18,-11,2,22,16,-11 | |
AntiAliasMode=1 |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Example</title> | |
</head> | |
<body> | |
<div id="app"> |
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/env python3 | |
import glob | |
import os | |
import re | |
import json | |
from pathlib import Path | |
NSZ_PATTERN = re.compile(r"(?:(?P<titleid>[A-Za-z0-9]{16}).*|v(?P<version>\d{1,}).*){2}(?:\.nsz|\.nsp)") | |
XCI_PATTERN = re.compile(r"(?:\[(?P<region>[A-Za-z\,\s]+)\]\s)(?:\[(?P<langs>[A-Za-z\,].*)\]\s)?\[(?P<titleid>[A-Za-z0-9]{16})\]\.(?:xci|xcz)") |
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 argparse | |
from colorama import init, Fore, Back, Style | |
import glob | |
import os | |
import re | |
import sys | |
init() | |
pattern = re.compile(r"(?:([A-Za-z0-9]{16}).*|v(\d{1,}).*){2}.nsz") |