4.3.1

(feat): Requests for file download will now allow users to pass in a chunk_size option that allows them to receive chunks of a specific size from the resultant iter_bytes invocation on the response byte stream.

Concretely, a user would leverage the following:

1client.download(
2 ...,
3 request_options={
4 "chunk_size": 1024 # 1MB
5 }
6)


4.2.7

(fix): The generated README will now have a section that links to the generated SDK Reference (in reference.md).

1## Reference
2
3A full reference for this library can be found [here](./reference.md).