Reputation: 51
I currently have a problem with my code, which is akin to the one below:
import apples.py as apple
apple.foo()
When I try to import apples.py
module (self-made and in the same folder), it raises an error:
ERROR - apples.py module not found.
What can I do? It's a rather heavy script, and putting it into a single script collapses python due to lack of memory.
Upvotes: 1
Views: 68