MPCodeWriter21 / whois21

whois21 is a simple and easy to use python package that lets you easily query whois information of a domain/IP.
Apache License 2.0
26 stars 1 forks source link

Can't use in AWS Lambda #8

Open jcfergus opened 9 months ago

jcfergus commented 9 months ago

This is a nice package, but it's unusable within the context of an AWS Lambda, because it tries to write data to disk, and lambda filesystems are read-only. I wonder if it would be possible to create a version that caches data in memory and doesn't try to write it to disk? (I know it would be less performant, but at least it would work.)