Python - Warum kann ich Module ohne __init__.py importieren?
Ich bin neu in Python und kann immer noch nicht verstehen, warum wir ein @ brauch__init__.py
Datei zum Importieren von Modulen. Ich habe andere Fragen und Antworten durchgesehen, z. B.Die.
Was mich verwirrt ist, dass ich meine Module importieren kannohn __init__py
, so warum brauche ich das überhaupt?
Mein Beispiel,
index.py
modules/
hello/
hello.py
HelloWorld.py
index.py,
import os
import sys
root = os.path.dirname(__file__)
sys.path.append(root + "/modules/hello")
# IMPORTS MODULES
from hello import hello
from HelloWorld import HelloWorld
def application(environ, start_response):
results = []
results.append(hello())
helloWorld = HelloWorld()
results.append(helloWorld.sayHello())
output = "<br/>".join(results)
response_body = output
status = '200 OK'
response_headers = [('Content-Type', 'text/html'),
('Content-Length', str(len(response_body)))]
start_response(status, response_headers)
return [response_body]
modules / hello / hello.py,
def hello():
return 'Hello World from hello.py!'
modules / hello / HelloWorld.py,
# define a class
class HelloWorld:
def __init__(self):
self.message = 'Hello World from HelloWorld.py!'
def sayHello(self):
return self.message
Ergebnis
Hello World from hello.py!
Hello World from HelloWorld.py!
Was es braucht, sind nur diese beiden Zeilen,
root = os.path.dirname(__file__)
sys.path.append(root + "/modules/hello")
Ohne eines von__init__py
. Kann jemand erklären, warum es so funktioniert?
Wenn__init__py
ist der richtige Weg, was soll ich in meinem Code tun / ändern?