“importar módulo local python” Código de respuesta

Importar módulo Python desde otro directorio

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

import file
Funny Frog

importar módulo local python

# 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

Respuestas similares a “importar módulo local python”

Preguntas similares a “importar módulo local python”

Más respuestas relacionadas con “importar módulo local python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código