iterencode(o)
Encode the given object, o, and yield each string representation as available. For example:
1 2 | for chunk in json.JSONEncoder().iterencode(bigobject): mysocket.write(chunk) |
iterencode(o)
Encode the given object, o, and yield each string representation as available. For example:
1 2 | for chunk in json.JSONEncoder().iterencode(bigobject): mysocket.write(chunk) |
Designed by : w10schools
service@w10schools.com
Please login to continue.