- PR #19
DefaultCache requires keyword arguments now instead of positional arguments,
in particular
maxsize
andttl
.
- PR #19
Issue #18
An issue with the handler not being created if you provide your own custom
maxsize
/ttl
values has been fixed.
- Released a batch ops function on the handler called
getBatchDetails
which accepts a list of IP addresses (or an IP address plus a path to more specific details, e.g.8.8.8.8/country
). See documentation on batch operations in the README for more details.
-
Fix Issue #8. Deleted the
ip_address
key in the details object which was of typeIPv4Address
.This allows serializing the details object (into JSON or something else) without errors by default.
Users who expected that object type can simply pull the
ip
key instead and turn it into anIPv4Address
object on their own.