I get an object with unknown fields for me. Is there any way to see the list of fields of this object using standard Python tools?

    1 answer 1

    Regular: dir(obj) In addition, it is often useful to explicitly request the type: type(obj)

    • and the list of methods? - faoxis
    • one
      In the list, which gives dir there are both fields and methods. - tonal