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 subprocess | |
| import os | |
| import re | |
| # 管理者権限必須 | |
| # pyinstaller対応版 | |
| # https://qiita.com/nonzu/pxs/b4cb0529a4fc65f45463 | |
| def subprocess_args(include_stdout=True): | |
| if hasattr(subprocess, 'STARTUPINFO'): |
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
| @echo off | |
| cd %~dp0 | |
| rem 本batをkunio01.bin~kunio11_prg.binと同一の適当なフォルダ内に移動後、起動 | |
| echo 4E 45 53 1A 08 00 21 00 00 00 00 00 00 00 00 00>kunio01_header.txt | |
| echo 4E 45 53 1A 08 10 10 00 00 00 00 00 00 00 00 00>kunio02_header.txt | |
| echo 4E 45 53 1A 08 10 41 00 00 00 00 00 00 00 00 00>kunio03_header.txt | |
| echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio04_header.txt | |
| echo 4E 45 53 1A 08 10 40 00 00 00 00 00 00 00 00 00>kunio05_header.txt |
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 os | |
| ################################################################################ | |
| # sincerip_rio_cui.py | |
| # | |
| # Imaha486氏の解析結果を参考に作った、Will系.arc展開ツールです。 | |
| # ヘッダ個数のチェック処理を端折っているため、 | |
| # 複数のファイル種類が格納されているアーカイブ(Chip.arcとか)には使えません | |
| # |
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
| ;mode800 | |
| *define | |
| caption "TEST for ONScripter" | |
| rmenu "セーブ",save,"ロード",load,"リセット",reset | |
| savenumber 18 | |
| transmode alpha | |
| globalon | |
| rubyon |
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
| from mutagen.easyid3 import EasyID3 | |
| import subprocess | |
| import psutil | |
| import glob | |
| import time | |
| import os | |
| import re | |
| # ---------------------------------------- |
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
| from bs4 import BeautifulSoup | |
| import requests | |
| import urllib | |
| import re | |
| import os | |
| import unicodedata | |
| def _path_executable_kai(moji: str) -> str: | |
| moji = moji.replace("/", "/") |