Alexander Hess
ec3097e220
The sample_package folder serves as an example in notebook 02 as to what a Python package looks like. Its contents actually belong to the chapter on object-orientation.
5 lines
129 B
Python
5 lines
129 B
Python
"""This package provides Vectors and Matrices."""
|
|
|
|
from .matrix import Matrix
|
|
from .utils import norm
|
|
from .vector import Vector
|