3

I wanted to use the following code from here: How can I save all the variables in the current python session?

import shelve

T='Hiya'
val=[1,2,3]

filename='/tmp/shelve.out'
my_shelf = shelve.open(filename,'n') # 'n' for new

for key in dir():
    try:
        my_shelf[key] = globals()[key]
    except TypeError:
        #
        # __builtins__, my_shelf, and imported modules can not be shelved.
        #
        print('ERROR shelving: {0}'.format(key))
my_shelf.close()

But it gives the following error:

Traceback (most recent call last):
  File "./bingo.py", line 204, in <module>
    menu()
  File "./bingo.py", line 67, in menu
    my_shelf[key] = globals()[key]
KeyError: 'filename'

Can you help me please?

Thanks!

4

1 に答える 1

4

トレースバックから、関数内からそのコードを実行しようとしているようです。

ただし、現在のローカル スコープdirで名前を検索します。したがって、が関数内で定義されている場合は、ではなくin になります。filenamelocals()globals()

おそらく、次のようなものがもっと必要です。

import shelve

T = 'Hiya'
val = [1, 2, 3]

def save_variables(globals_=None):
    if globals_ is None:
        globals_ = globals()
    filename = '/tmp/shelve.out'
    my_shelf = shelve.open(filename, 'n')
    for key, value in globals_.items():
        if not key.startswith('__'):
            try:
                my_shelf[key] = value
            except Exception:
                print('ERROR shelving: "%s"' % key)
            else:
                print('shelved: "%s"' % key)
    my_shelf.close()

save_variables()

が関数内globals()から呼び出されると、呼び出され場所からではなく、関数が定義されているモジュールから変数が返されることに注意してください。

したがって、save_variables関数がインポートされ、現在のモジュールから変数が必要な場合は、次のようにします。

save_variables(globals())
于 2012-01-15T20:06:04.390 に答える