Python de solicitação de codificação de bloco
def gen():
yield 'hi'
yield 'there'
requests.post('http://some.url/chunked', data=gen())
Puzzled Puffin
def gen():
yield 'hi'
yield 'there'
requests.post('http://some.url/chunked', data=gen())