Answers for "python import modules in same directory"

1

how call module in the same directory

from .posts_run import get_all_posts
#    ^ here do relative import
# or
from core.posts_run import get_all_posts
# because your package named 'core' and importing looks in root folder
Posted by: Guest on December-26-2020
0

python import file from same directory

# Then if we're using Python 3.3 or higher, we can write in script.py:

import subdir.mymodule

subdir.mymodule.say_hello()
Posted by: Guest on October-02-2021

Code answers related to "python import modules in same directory"

Python Answers by Framework

Browse Popular Code Answers by Language