Was curious to hear everyone's opinion on document...
# ask-community
p
Was curious to hear everyone's opinion on documenting dagster pipelines. Dagit is awesome and you can get a lot of information about scheduled pipelines from the UI, but does anyone have any insight into documenting components like assets/graphs/resources etc? Sphinx seems like the go to for python based projects.
s
I would generally recommend using Python docstrings if you're defining these in Python. The docstrings will then get picked up as descriptions and show up in Dagit.
p
that makes sense. Thank you for your help