Tagged Questions
The dynamic-import tag has no wiki summary.
7
votes
2answers
278 views
Dynamically importing Python module
I have a trusted remote server that stores many custom Python modules. I can fetch them via HTTP (e.g. using urllib2.urlopen) as text/plain, but I cannot save the fetched module code to the local hard ...
3
votes
5answers
171 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
60 views
Load different modules without changing the logic file
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/
pyfacebook.py
...
1
vote
1answer
80 views
Multiple c:imports with Stripes is causing problems
I'm having a problem when I call the same Stripes action with multiple c:import tags in the same jsp. When I use the first c:import, I use a few c:params with it. These get bound to the ...
1
vote
2answers
240 views
Dynamic module import of class list from module given its full path
First, it seems proper to me to state that I've read over the following questions:
Python imports by folder module
Dynamic module import in Python
And, I don't feel like they address my use case. ...
0
votes
5answers
89 views
Dynamically import a method in a file, from a string
I have a string, say: abc.def.ghi.jkl.myfile.mymethod. How do I dynamically import mymethod?
Here is how I went about it:
def get_method_from_file(full_path):
if len(full_path) == 1:
...