“Względny import Pythona” Kod odpowiedzi

plik otwartego Pythona w stosunku do modułu

import os

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

Importuj Python modułu lokalnego

# If the module is in the same directory:
import <module_name>

# If the module isn't in the same directory:
import sys
# insert at 1, 0 is the script path (or '' in REPL)
sys.path.insert(1, '/path/to/application/app/folder')

import <module_name>
Random boi

Python Jak importować bibliotekę bezwzględną ścieżkę

import sys
sys.path.append('/foo/bar/my_module')
# Considering your module contains a function called my_func, you could import it:
from my_module import my_func
# Or you could import the module as a whole,
import my_module
Fine Falcon

Względny import w Pythonie

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

Względny import Pythona

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

Zaimportuj plik Python z innego katalogu

from application.app.folder.file import func_name
Yellowed Yacare

Odpowiedzi podobne do “Względny import Pythona”

Pytania podobne do “Względny import Pythona”

Więcej pokrewnych odpowiedzi na “Względny import Pythona” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu