iksteen / aws-request-signer

A python library to sign AWS requests using AWS Signature V4.
MIT License
27 stars 8 forks source link

Deprecated `.utcnow` calls #14

Open fitzgeraldja opened 1 week ago

fitzgeraldja commented 1 week ago

Hi there, thanks for the helpful package! Minor request, but please could all datetime.datetime.utcnow() calls (e.g. here) be replaced with datetime.datetime.now(datetime.timezone.utc), as the .utcnow method has been deprecated and will be removed in future?

iksteen commented 1 week ago

Excellent suggestion! I'll do that when I get around to it.