Python-Modul (Python-Lernnotiz ④)

Informationen zu Python-Modulen

Punkt

sample_module.py


def func1(n):
    return n

def func2(n):
    return n

Im Python-Interpreter


>>> import sample_module
>>> sample_module.func1('kawauso') 
'kawauso'

Informationen zum Importieren von Modulen

Punkt

>>> from sample_module import func1, func2
>>> func1('kawauso')
'kawauso'
>>> func2('kawauso')
'kawauso'
>>> from sample_module import *
>>> func1('kawauso')
'kawauso'

Führen Sie das Modul als Skript aus

Punkt

sample_module.py


def func1(n):
    return n

def func2(n):
    return n

#Dieser Code wird beim Import als Modul nicht ausgeführt
if __name__ == "__main__":
    import sys
    func1(sys.argv[1])
$ python sample_module.py kawauso
kawauso

Modul-Suchpfad

Punkt

Über kompilierte Python-Dateien

Punkt

Standardmodul

Punkt

dir () Funktion

>>> import module
>>> dir(module) 
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'func1', 'func2']

>>> hoge = 'hoge' 
>>> dir()
['__annotations__', '__builtins__', 
'__doc__', '__loader__', '__name__', '__package__', '__spec__', 'hoge', 
'module']
>>>
>>> import builtins
>>> dir(builtins) 
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 
'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 
'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 
'RecursionError', 'ReferenceError', 
'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '_', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'breakpoint', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 
'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 
'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']

Paket

Punkt

Beispiel für eine Paketkonfiguration


A/ ->Top Level Paket
    __init__.py ->Paketinitialisierung
    A1/  ->Unterpaket 1
        __init__.py
        hoge1.py
        hoge2.py
        hoge3.py
    A2/ ->Unterpaket 2
        __init__.py
        hoge1.py
        hoge2.py
        hoge3.py

Paket laden


import A.A1.hoge1
#Verweise darauf müssen mit vollem Namen erfolgen
A.A1.hoge1.func1()

Es gibt auch eine andere Lademethode

Paket laden 2


from A.A1 import hoge1
hoge1.func1()

Darüber hinaus gibt es auch eine Möglichkeit, die gewünschte Funktion oder Variable direkt zu importieren.

from A.A1.hoge1 import func1
func1()

* Aus Paket importieren

Punkt

__init__.py


__all__ = ["module1", "module2", "module3"]
module4 = func4() #Modul4 wird ebenfalls importiert
#Echo- und Surround-Module werden importiert
import sound.effects.echo
import sound.effects.surround
from sound.effects import *

Gegenseitige Bezugnahme innerhalb des Pakets

Punkt

from . import echo #Gleiche Hierarchie
from .. import formats #Eine Ebene höher
from ..filters import equalizer #Im Filter-Submodul eine Ebene höher

Pakete, die mehrere Verzeichnisse umfassen

Punkt

Recommended Posts

Python-Modul (Python-Lernnotiz ④)
Python-Klasse (Python-Lernnotiz ⑦)
Behandlung von Python-Ausnahmen (Python-Lernnotiz ⑥)
Python-Memo
Python-Memo
Python-Memo
Python-Memo
Python lernen
Python-Memo
Python-Memo
Python-Steuerungssyntax, Funktionen (Python-Lernnotiz ②)
Eingabe / Ausgabe mit Python (Python-Lernnotiz ⑤)
Abschnittsplanung Lernnotiz ~ von Python ~
"Scraping & maschinelles Lernen mit Python" Lernnotiz
LPIC201 Studiennotiz
[Python] Lernnotiz 1
Python-Anfänger-Memo (9.2-10)
Python-Lernnotizen
Python-Modul importieren
Django Lernnotiz
Python-Anfänger-Memo (9.1)
Python-Lernausgabe
Python-Lernseite
★ Memo ★ Python Iroha
Python-Lerntag 4
[Python] EDA-Memo
Python Deep Learning
Python 3-Operator-Memo
Python-Lernen (Ergänzung)
Deep Learning × Python
[Memo] Maschinelles Lernen
[Mein Memo] Python
Python3-Metaklassen-Memo
Python-Sammlungsmodul
[Python] Grundkarten-Memo
Python-Anfänger-Memo (2)
Python-Lernnotizen
[Python] Numpy Memo
Python & Machine Learning Study Memo: Vorbereitung der Umgebung
Python-Zahlen, Zeichenfolgen, Listentypen (Python-Lernnotiz ①)
[Lernnotiz] Grundlagen des Unterrichts mit Python
Struktur und Betrieb der Python-Daten (Python-Lernnotiz ③)
Python-Standardbibliothek: zweite Hälfte (Python-Lernnotiz ⑨)
Python & Machine Learning Study Memo ③: Neuronales Netz
Python & maschinelles Lernen Lernnotiz Machine: Maschinelles Lernen durch Rückausbreitung
Python & Machine Learning Study Memo ⑥: Zahlenerkennung
Python-Standardbibliothek: Erste Hälfte (Python-Lernnotiz ⑧)
Python lernen mit ChemTHEATER 03
Python OpenCV Installation (Memo)
"Objektorientiert" mit Python gelernt
Erweitertes Lernen 1 Python-Installation
Python lernen mit ChemTHEATER 05-1
Python: Deep Learning-Praxis
Python ~ Grammatikgeschwindigkeit lernen ~
Visualisierungsnotiz von Python
Python: Unüberwachtes Lernen: Grundlagen
Erstellen Sie ein Python-Modul
Python & Machine Learning Study Memo ⑤: Klassifikation von Ayame