Code: Select all
class FileItem:
def __init__(self, fname):
self.fname = fname
< /code>
Versuch, mit JSON zu serialisieren: < /p>
>>> import json
>>> x = FileItem('/foo/bar')
>>> json.dumps(x)
TypeError: Object of type 'FileItem' is not JSON serializable