aws-sns-message-validator
aws-sns-message-validator copied to clipboard
Remove `requests-cache` dependency
#12 added caching using requests-cache
. requests-cache
is a powerful library with half a dozen dependencies, but we're only utilizing its most basic functionality.
This PR removes requests-cache
as a dependency, instead using stdlib's lru_cache
and vanilla requests
to achieve the same effect.