“Lokales Modul Python importieren” Code-Antworten

Importieren Sie das Python -Modul aus einem anderen Verzeichnis

import sys
# sys.path is a list of absolute path strings
sys.path.append('/path/to/application/app/folder')

import file
Funny Frog

Lokales Modul Python importieren

# 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

Ähnliche Antworten wie “Lokales Modul Python importieren”

Fragen ähnlich wie “Lokales Modul Python importieren”

Weitere verwandte Antworten zu “Lokales Modul Python importieren” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen