sample

sample

select の結果セットをkey-valueで出力する

PostgreSQL前提であれば psycopg2での接続が一般的import psycopg2from datetime import datetimefrom decimal import Decimaldef fetchone_dic...
sample

Python jsonからcsvファイルへ変換

import csvimport jsonimport sysimport osdef is_valid_json_file(filename): if not os.path.exists(filename): return False ...
sample

Python コマンドライン引数付きサンプルスクリプト

sys.argvリストを使用してコマンドライン引数を取得できます引数付きスクリプトimport sysimport jsonif __name__ == "__main__": if len(sys.argv) != 3: print("U...