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
# in teste.py we have a list words_list = ["zombie", "baboon"]
from teste import words_list
#or
from teste import *
print(words_list)
# To call say_hello() from inside script.py, we can write in script.py:
import mymodule
mymodule.say_hello()
import mymodule
mymodule.say_hello()
import subdir.mymodule
subdir.mymodule.say_hello()
# Then if we're using Python 3.3 or higher, we can write in script.py:
import subdir.mymodule
subdir.mymodule.say_hello()
# In a file system path, we would separate the components of a path
# using / (Linux, macOS, etc.) or (Windows). In a Python import statement,
# however, we separate the path components using a dot (.).
import subdir.mymodule
subdir.mymodule.say_hello()