3
votes
5answers
159 views
Is it reasonable to save data as python modules?
This is what I've done for a project. I have a few data structures that are bascially dictionaries with some methods that operate on the data. When I save them to disk, I write them out to .py files …
2
votes
3answers
43 views
Load different modules without changing the logic file
Hi All:
Suppose I've got 2 different modules which have the uniform(same) interfaces. The files list like this:
root/
logic.py
sns_api/
__init__.py
facebook/
…
