12

重複の可能性:
コンパイル済みの python モジュールをメモリからロードする方法は?

StringIO である可能性のある Python ファイルがメモリ内にいくつかあります。メモリに保存されているモジュール ファイルをインポートするにはどうすればよいですか? ディスクに保存してからロードしたくありません。

次のようになります。

import StringIO.StrngIO([buf]) 
4

1 に答える 1

15

PEP 302で説明されているように、カスタム メタ インポート フックを使用するのが良い方法です。文字列の辞書から動的にモジュールをインポートするクラスを書くことができます:

"""Use custom meta hook to import modules available as strings. 
Cp. PEP 302 http://www.python.org/dev/peps/pep-0302/#specification-part-2-registering-hooks"""
import sys
import imp

modules = {"a" : 
"""def hello():
    return 'Hello World A!'""",
"b":
"""def hello():
    return 'Hello World B!'"""}    

class StringImporter(object):

   def __init__(self, modules):
       self._modules = dict(modules)


   def find_module(self, fullname, path):
      if fullname in self._modules.keys():
         return self
      return None

   def load_module(self, fullname):
      if not fullname in self._modules.keys():
         raise ImportError(fullname)

      new_module = imp.new_module(fullname)
      exec self._modules[fullname] in new_module.__dict__
      return new_module


if __name__ == '__main__':
   sys.meta_path.append(StringImporter(modules))

   # Let's use our import hook
   from a import hello
   print hello()
   from b import hello
   print hello()

ところで: それほど多くは望まず、1 つの文字列だけをインポートしたい場合は、メソッド load_module の実装に固執してください。必要なのはその中にあります。

于 2013-01-07T09:02:12.987 に答える