How to get the contents of a field instead of `<bound method...` in a CSV output with Python (pytwist)
The snippet below is generating "weird" output: for s in servers: vo = ss.getServerVO(s) values = [] for f in voFields: attribValue = getattr(vo, f) values.append(attribValue) customValues = ss.getCustomFields(s) for f in customFields: values.append(customValues[f]) # Convert all values to...