“relativer Import in Python” Code-Antworten

Python Öffnen Sie die Datei im Vergleich zum Modul

import os

TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')
Good Goshawk

relativer Import in Python

import sys
sys.path.append("")		# fixes import issues

from your_file import your_class
# OR
from your_dir.your_file import your_class

# also, make sure there is an empty __init__.py file in each directory
Clever Capybara

Python Relative Import

import os, sys
sys.path.append('../package1/module1.py')
Fierce Fly

Ähnliche Antworten wie “relativer Import in Python”

Fragen ähnlich wie “relativer Import in Python”

Weitere verwandte Antworten zu “relativer Import in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen