ID | JP | EN | CN |
---|---|---|---|
1001 | 三月なのか | Merch 7th | 三月七 |
1002 | 丹恒 | Dan Heng | 丹恒 |
1003 | 姫子 | Himeko | 姬子 |
1004 | ヴェルト | Welt | 瓦尔特 |
1005 | カフカ | Kafka | 卡芙卡 |
1006 | 銀狼 | Silver Wolf | 银狼 |
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
@echo off | |
cd c:\android-backup-extractor | |
rem パッケージ指定 | |
:input_check | |
set pacname= | |
set /P pacname="抽出するアプリのパッケージ名を入力:" | |
if %pacname% =="" goto :input_check |
import re
def unexponential(text: str):
pe = r'((\d+\.\d+|\d+)e(\+|\-)[1-9]+\d*)'
found = re.findall(pe, text)
for i in found:
base = i[0]
fvalue = str(float(base))
if "+" in i: fvalue = fvalue[0:-2]
def upperCamelize(text: str):
lines = []
for l in text.split("\n"):
words = []
for w in l.split(" "):
w = "".join([i.title() for i in w.split("_")])
words.append(w)
lines.append(" ".join(words))
return "\n".join(lines)
from PIL import Image, ImageDraw, ImageFont
def drawText(bg, text: str, spacing: int, font, origin, color):
img_clear = Image.new("RGBA", bg.size, (255, 255, 255, 0))
draw = ImageDraw.Draw(img_clear)
origin_x, origin_y = origin
pads = []
for i in text:
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 json | |
import os | |
import re | |
import requests | |
from PIL import Image | |
import asyncio | |
from io import BytesIO | |
lang = "en-us" | |
dir = "SR" |
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 json | |
import os | |
import requests | |
from PIL import Image | |
import asyncio | |
from io import BytesIO | |
lang = "en-us" | |
dir = "GI" |
OlderNewer