J'utilise Python 3.5.1. J'ai lu le document et la section package ici: https://docs.python.org/3/tutorial/modules.html#packages
Maintenant, j'ai la structure suivante:
/home/wujek/Playground/a/b/module.py
module.py
:
class Foo:
def __init__(self):
print('initializing Foo')
Maintenant, pendant que vous êtes /home/wujek/Playground
:
~/Playground $ python3
>>> import a.b.module
>>> a.b.module.Foo()
initializing Foo
<a.b.module.Foo object at 0x100a8f0b8>
De même, maintenant à la maison, superfolder de Playground
:
~ $ PYTHONPATH=Playground python3
>>> import a.b.module
>>> a.b.module.Foo()
initializing Foo
<a.b.module.Foo object at 0x10a5fee10>
En fait, je peux faire toutes sortes de choses:
~ $ PYTHONPATH=Playground python3
>>> import a
>>> import a.b
>>> import Playground.a.b
Pourquoi ça marche? Je pensais qu'il devait y avoir des __init__.py
fichiers (des fichiers vides fonctionneraient) dans les deux a
et b
pour module.py
être importables lorsque le chemin Python pointe vers le Playground
dossier?
Cela semble avoir changé depuis Python 2.7:
~ $ PYTHONPATH=Playground python
>>> import a
ImportError: No module named a
>>> import a.b
ImportError: No module named a.b
>>> import a.b.module
ImportError: No module named a.b.module
Avec les __init__.py
deux ~/Playground/a
et ~/Playground/a/b
cela fonctionne très bien.