Is it possible to set default headers for boto requests? Basically I want to include a couple of headers in every API call I make to S3.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Right now, extra headers have to be specified on each request. The various methods of the bucket and key class all take an optional headers parameter and the contents of that dict gets merged into the request headers.

Being able to specify extra headers at the bucket level and then have those merged into all requests automatically sounds like a great feature. I'll add that to boto in the near future.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.