0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python3 で標準型データのみをもつ辞書データ(dict)から class の動的変数を生成するメモ

Posted at

たとえば設定ファイルを JSON で書いておいて, dict で読んで, Class の変数にしたい.
文字列ルックアップだと, typo したときにバグになってしまうことがある.

とりあえず設定データ(e.g. 数値, 文字列)であれば __dict__ を update すれば行ける.

class Conf:
  def __init__(self):
    pass

d = { 'a': 3 }

c = Conf()
c.__dict__.update(d)

print(c.a)

変数を dict にしたい

逆に変数から dict を作るのも, __dict__ を iterate すれば行ける.

TODO

  • すでに変数が定義されていると上書きされてしまうので, 上書きチェクの機能をつけてみたりする
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?