Are there already good examples / practices around...
# python
c
Are there already good examples / practices around creating reusable python modules for pulumi? In terraform I make my customers almost always write terraform modules so that other teams can just "import" them into their code. In nodejs I would create a custom component that I
require
into my
index.js
. Does the same work with python programs so I can just
import
them into
__main__.py
?