আপনি যদি গৃহীত উত্তরটি বিমূর্ত করতে চান তবে আপনি ব্যবহার করতে পারেন:
import shelve
def save_workspace(filename, names_of_spaces_to_save, dict_of_values_to_save):
'''
filename = location to save workspace.
names_of_spaces_to_save = use dir() from parent to save all variables in previous scope.
-dir() = return the list of names in the current local scope
dict_of_values_to_save = use globals() or locals() to save all variables.
-globals() = Return a dictionary representing the current global symbol table.
This is always the dictionary of the current module (inside a function or method,
this is the module where it is defined, not the module from which it is called).
-locals() = Update and return a dictionary representing the current local symbol table.
Free variables are returned by locals() when it is called in function blocks, but not in class blocks.
Example of globals and dir():
>>> x = 3 #note variable value and name bellow
>>> globals()
{'__builtins__': <module '__builtin__' (built-in)>, '__name__': '__main__', 'x': 3, '__doc__': None, '__package__': None}
>>> dir()
['__builtins__', '__doc__', '__name__', '__package__', 'x']
'''
print 'save_workspace'
print 'C_hat_bests' in names_of_spaces_to_save
print dict_of_values_to_save
my_shelf = shelve.open(filename,'n')
for key in names_of_spaces_to_save:
try:
my_shelf[key] = dict_of_values_to_save[key]
except TypeError:
pass
my_shelf.close()
def load_workspace(filename, parent_globals):
'''
filename = location to load workspace.
parent_globals use globals() to load the workspace saved in filename to current scope.
'''
my_shelf = shelve.open(filename)
for key in my_shelf:
parent_globals[key]=my_shelf[key]
my_shelf.close()
an example script of using this:
import my_pkg as mp
x = 3
mp.save_workspace('a', dir(), globals())
কর্মক্ষেত্র পেতে / লোড করতে:
import my_pkg as mp
x=1
mp.load_workspace('a', globals())
print x
এটি কাজ করেছিল যখন আমি এটি চালাতাম। আমি স্বীকার করব যে আমি বুঝতে পারছি না dir()
এবং globals()
100% তাই আমি নিশ্চিত নই যে এখানে কিছু অদ্ভুত সতর্কবাণী থাকতে পারে তবে এখন পর্যন্ত এটি কার্যকর বলে মনে হচ্ছে। মন্তব্য স্বাগত :)
আরও কিছু গবেষণার পরে যদি আপনি save_workspace
গ্লোবালগুলির সাথে পরামর্শ হিসাবে কল করেন এবং save_workspace
কোনও ফাংশনটির মধ্যে থাকেন তবে আপনি যদি স্থানীয় সুযোগে ভেরিয়েবলগুলি সংরক্ষণ করতে চান তবে এটি আশানুরূপভাবে কাজ করবে না। যে ব্যবহারের জন্য locals()
। এটি ঘটে কারণ গ্লোবালগুলি মডিউল থেকে গ্লোবালগুলি নিয়ে যায় যেখানে ফাংশনটি সংজ্ঞায়িত করা হয়, এটি যেখানে বলা হয় সেখান থেকে নয় আমার ধারণা হবে।