Python Project Architecture

Back to Languages

future

import from __future__ allows you to access new features which are not currently compatable with the current interpreter

Modules -- source

In python, .py files are modules of definitions and statements

Packages

Packages provide namespacing for modules, like A.B for package A and submodule B

Architecture Example: Tensorflow