# !/user/bin/env python # -Launches a map in the browser using an address from the # command line or clipboard import webbrowser, sys, pyperclip def main(): if len(sys.argv) > 1: # Get address from command line address = ' '.join(sys.argv[1:]) else: # Get address from clipboard address = pyperclip.paste() # open website webbrowser.open('https://www.google.com/maps/place/' + address) if __name__ == '__main__': main()
コマンドラインに住所を打ち込むか、住所をクリップボードにコピーした状態でスクリプトを実行すると、グーグルマップのサイトがWebブラウザで起動して住所の場所を表示する。