Inspect object attributes python

List public attributes of any Python object

python3 -c "import json; print([x for x in dir(json) if not x.startswith('_')])"
more python all 15 commands →