Issue 14290: Importing script as module causes ImportError with pickle.load (original) (raw)
Issue14290
Created on 2012-03-13 19:40 by rj3d, last changed 2022-04-11 14:57 by admin. This issue is now closed.
Messages (3) | ||
---|---|---|
msg155651 - (view) | Author: Robert (rj3d) | Date: 2012-03-13 19:40 |
I implemented a data-structure as an object in a script, let's call it objectScript.py. I'm using this data-structure in other scripts like so: from objectScript import data-structure Populating this data-structure requires quite a bit of time, so when I'm done with it, I like to pickle it. However, if I try to load it from the pickled file, I get the following error: ImportError: No module named objectScript However, if I replace my 'from objectScript import data-structure' statement with the actual data-structure class definition from the objectScript.py file when I am pickling the object but then revert to the import statement when I am unpickling the object, everything works fine. | ||
msg164825 - (view) | Author: Floris Bruynooghe (flub) | Date: 2012-07-07 11:46 |
Hi, I think this is a usage error and if not you should try to provide a test case with both files for this. Pickle needs to be able to import the module which contains the classes by the same name as the original module. That means pickling an instance of a class defined in a script will not work unless it is the same script which did the pickling. The object is probably pickled under the name __main__.YourClass and when you import it in another script it will be objectScript.YourClass, hence pickle is unable to find the class for the object you are trying to unpickle. | ||
msg188286 - (view) | Author: Alexandre Vassalotti (alexandre.vassalotti) * ![]() |
Date: 2013-05-03 00:59 |
Without a test case, we cannot tell if this is a bug in pickle or not. Anyhow, Floris's explanation is pretty much on the dot as why you might see this error. |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:57:27 | admin | set | github: 58498 |
2013-05-03 00:59:44 | alexandre.vassalotti | set | status: open -> closednosy: + alexandre.vassalottimessages: + resolution: works for mestage: resolved |
2012-07-07 11:46:46 | flub | set | nosy: + flubmessages: + |
2012-03-13 19:40:40 | rj3d | create |