2024/08/29
特定URLだけをChromeの履歴から自動で消去する拡張機能作った
2024/08/27
テキスト上の数値をまとめて増減するスクリプト
概要
このツールは、AppleScriptでUI部分を処理し、Pythonで主要コードを処理しています。
ユーザーが指定したパターンに基づいてクリップボードのテキスト内の数字を増減します。
例えば、「(」に続く数字を特定して増減させることができます。この機能は、文書の整形やデータをまとめて処理する際に非常に便利です。
前準備
このツールを使用する前に、必要なライブラリのインストールと環境設定を行う必要があります。以下の手順に従ってください。
pyperclipのインストール
このツールでは、クリップボードの操作にpyperclip
ライブラリを使用します。まだインストールされていない場合は、以下のコマンドを実行してインストールしてください。
pip install pyperclip
または、Anacondaを使用している場合は、
conda install -c conda-forge pyperclip
を実行してください。
Python インタープリタのパスの確認と変更
スクリプトを実行するためには、正しいPythonインタープリタのパスを指定する必要があります。使用している環境によってパスは異なるため、以下のコマンドをターミナルで実行し、Pythonインタープリタの正確なパスを確認してください。
which python3
このコマンドの出力結果は、例えば /usr/local/bin/python3
や /opt/anaconda3/bin/python3
など、インストールされている環境によって異なります。このパスは、AppleScriptでスクリプトを実行する際に使用するパスと一致する必要があります。
set command to "/opt/anaconda3/bin/python3 '/Users/testuser/Desktop/pythoncode.py' " & quoted form of prefixPattern & " " & quoted form of suffixPattern & " " & quoted form of adjustment
そこで得たパスをAppleScript上記コードの
/opt/anaconda3/bin/python3
この部分を置き換えます。またPythonコードを保存したパスとファイル名も
'/Users/testuser/Desktop/pythoncode.py'
この箇所と置き換えます。
使い方
例:「(3,7),(5,7)」の3と5を+2して「(5,7),(7,7)」にしたい。
- 修正したいテキストをコピーしてクリップボードに入れます。
- AppleScriptを実行します。
- AppleScriptダイアログを通じて、変換したい数字の前か後ろの文字列を入力します。
これはどちらかだけで大丈夫です。
例:前に( 、後ろは空欄…これで ( に続く数字がマッチします。 - 増減させたい数値を入力します。
例:2 - クリップボード上のテキストが自動的に処理され、結果がクリップボードに戻されます。
・AppleScript
-- ユーザーにパターン(前)を入力させる
set prefixPattern to text returned of (display dialog "数字の前にある文字列を入力してください(必須ではありません):" default answer "")
if prefixPattern is "" then set prefixPattern to "none"
-- ユーザーにパターン(後)を入力させる
set suffixPattern to text returned of (display dialog "数字の後にある文字列を入力してください(必須ではありません):" default answer "")
if suffixPattern is "" then set suffixPattern to "none"
-- ユーザーに増減量を入力させる
set adjustment to text returned of (display dialog "増減する数を入力してください:" default answer "")
-- AnacondaのPythonを指定してスクリプトを実行するコマンドを構築
set command to "/opt/anaconda3/bin/python3 '/Users/testuser/Desktop/pythoncode.py' " & quoted form of prefixPattern & " " & quoted form of suffixPattern & " " & quoted form of adjustment
-- コマンドを実行し、結果を取得
try
set output to do shell script command
on error errorMessage number errorNumber
display dialog errorMessage buttons {"OK"} default button 1
return
end try
-- 成功した場合、変更箇所の数を表示
display dialog output buttons {"OK"} default button 1
・Python
import reimport sysimport pyperclipdef adjust_numbers_in_text(text, prefix, suffix, adjustment):if not prefix and not suffix:return "Error: No pattern provided.", 0regex_patterns = []if prefix:regex_patterns.append(re.escape(prefix) + r'\d+')if suffix:regex_patterns.append(r'\d+' + re.escape(suffix))regex_pattern = rf'({"|".join(regex_patterns)})'matches = list(re.finditer(regex_pattern, text))if not matches:return "Error: No matching numbers found.", 0adjusted_count = 0for match in reversed(matches):full_match = match.group(1)number_part = re.search(r'\d+', full_match).group()new_number = int(number_part) + int(adjustment)new_text = full_match.replace(number_part, str(new_number))text = text[:match.start()] + new_text + text[match.end():]adjusted_count += 1return text, adjusted_countif __name__ == '__main__':prefix = sys.argv[1] if sys.argv[1] != 'none' else ''suffix = sys.argv[2] if sys.argv[2] != 'none' else ''try:adjustment = int(sys.argv[3])except ValueError:print("Error: Adjustment must be a number.")sys.exit(1) # 適切な数値でなければエラーとして終了input_text = pyperclip.paste()result_text, adjusted_count = adjust_numbers_in_text(input_text, prefix, suffix, adjustment)if "Error" in result_text:print(result_text) # エラーメッセージを出力else:pyperclip.copy(result_text)print(f"Processed text has been copied to clipboard. Adjusted {adjusted_count} places.")
写真番号が書かれたファイルを元にLightroomのxmp(サイドカー)へレートを書き込むAppleScript
写真番号が書かれたファイルから番号を抽出し、その番号と同じ番号の写真をLightroomで表示するAppleScriptです。
Lightroomはxmp(サイドカー)でカタログを管理していますので、そのxmpに直接文字列を書き込み、Lightroomにxmpを読み込ませることで「マーク」を反映させます。
マークとしては個人的にはフラグの「採用」を付けたいのですが、フラグ情報はxmpではなくカタログデータに書き込まれる仕様ですので、レートを付けることにしました。今回は★x5のレートです。
写真番号抽出部のカスタマイズ
最初に写真番号が書かれたファイルから番号を抽出するのですが、自分の環境用に作ったものですので、各々の環境に合わせて少し修正しないとならないかと思います。
抽出元となるファイルには「ご注文番号: 」に続いて写真番号が書かれています。
例えば、ご注文番号: 3506, 3508, 3530, 3533, 3536 のような感じです。
set fileNumbers to do shell script "echo " & quoted form of fileContent & " | grep -oE '" & regexPattern & "' | sed -n 's/ご注文番号://p' | tr -d ' '"
set AppleScript's text item delimiters to ","
「ご注文番号:」という文字列を探して、それを空の文字列に置換します(削除します)。そして更にスペースも削除します。「3506,3508,3530,3533,3536」という一塊に連なった文字列になります。
次の行ではカンマ区切りで文字列を区分けするよと決めます。
これでやっと5枚の写真番号を取り出すことができました。
記載している番号の書き方に合わせ、ここら辺をいじると行けるかと思います。
レートの星の数を変更する
set cmd to "/opt/homebrew/bin/gsed -i '5i xmp:Rating=\"5\"' "
Lightroomでレートの適用
Lightroomで該当するフォルダまたはファイルを表示し、フィルムストリップ(ウィンドウ下に一列でサムネイルが表示される部分)のサムネイル右上にある矢印マークを押すか右クリックから、メタデータ>「ディスクから設定を読み込む」または「メタデータをファイルから読み込む」(訳が違うだけで同じもの)を選択すると書き込まれたxmpファイルが新たに読み込まれ、星5のレートが写真に付きます。tell application "Finder"
try
set fileObject to selection as alias
on error
display dialog "order_ファイルを選択してください。処理を終了します。"
return
end try
if name of fileObject does not start with "order_" then
display dialog "order_ファイルを選択してください。処理を終了します。"
return
end if
end tell
-- ファイル内容を読み込んで処理
set fileContent to readFileContent(fileObject) --ファイル内容
set fileNumbers to extractFileNumbers(fileContent) as list --写真番号
set xmpFileNumbers to {} -- xmpファイル番号を格納するリスト
repeat with fileNumber in text items of fileNumbers
set end of xmpFileNumbers to fileNumber & ".xmp"
end repeat
tell application "Finder"
set targetFolder to (choose folder with prompt "RAWファイルのあるフォルダを指定してください") as text
end tell
set targetPOSIXFolder to quoted form of (text 1 thru -2 of POSIX path of targetFolder) --末尾の/を削除
-- .xmp ファイルの検索とxmp処理用リストの作成
set xmpFilePath to {}
repeat with xmpFileNumber in xmpFileNumbers
set foundFiles to paragraphs of (do shell script "find " & targetPOSIXFolder & " -type f -name '" & xmpFileNumber & "' -print")
if (count of foundFiles) > 0 then
set end of xmpFilePath to item 1 of foundFiles
else
display dialog "xmpファイルが全て見つかりません。フォルダを確認してください。"
return
end if
end repeat
-- ファイル名だけを取り出して変数に格納
set findFileNames to {}
set regexPattern to "/.?$"
repeat with filePath in xmpFilePath
set fileName to do shell script "basename " & quoted form of filePath
if fileName is not regexPattern then
set end of findFileNames to fileName
end if
end repeat
-- ないxmpファイルをerrFilesに追加
set errFiles to {}
repeat with xmpFileNumber in xmpFileNumbers
if xmpFileNumber is not in findFileNames then
set end of errFiles to xmpFileNumber as list
end if
end repeat
--xmpファイル処理
repeat with selectedFile in xmpFilePath
set selectedPOSIXFile to quoted form of the POSIX path of selectedFile
log selectedPOSIXFile
set fileExists to (do shell script "[ -e " & selectedPOSIXFile & " ] && echo 'true' || echo 'false'") as boolean --xmpファイルの存在確認
if fileExists then
-- ファイルをバックアップしてから、"xmp:Rating="が含まれている行を削除
set backupfileExists to (do shell script "[ -e " & selectedPOSIXFile & ".bak" & " ] && echo 'true' || echo 'false'") as boolean --xmpファイルの存在確認
if backupfileExists then
else
do shell script "cp " & selectedPOSIXFile & " " & selectedPOSIXFile & ".bak"
end if
do shell script "sed -i '' '/xmp:Rating=/d' " & selectedPOSIXFile
-- 5行目にxmp:Rating="5"を追加する
set cmd to "/opt/homebrew/bin/gsed -i '5i xmp:Rating=\"5\"' "
do shell script cmd & selectedPOSIXFile
else
set errFiles to errFiles & {selectedFile as text}
--display dialog "ファイルが存在しません。"
end if
end repeat
if (count of errFiles) > 0 then
activate
beep
display dialog "次のxmpファイルが見つかりませんでした: " & errFiles
else
activate
display dialog "該当番号すべてのxmpファイルを処理しました"
end if
-- ファイルの内容を読み込む関数
on readFileContent(fileObject)
set fileContent to read fileObject as «class utf8»
return fileContent
end readFileContent
-- ファイル番号を抽出する関数
on extractFileNumbers(fileContent)
set regexPattern to "ご注文番号: (.+)"
try
set fileNumbers to do shell script "echo " & quoted form of fileContent & " | grep -oE '" & regexPattern & "' | sed -n 's/ご注文番号://p' | tr -d ' '"
set AppleScript's text item delimiters to ","
set fileNumbers to text items of fileNumbers
return fileNumbers
on error errMsg
error "fileNumbers: " & errMsg
end try
end extractFileNumbers
Ï