S3Scanner
S3Scanner copied to clipboard
Profile
- Optimize imports to only pull in what we're using
- Find a good trade-off between bucket checking speed and memory consumed.
https://news.ycombinator.com/item?id=22084951
Do research to see if it helps to only import methods instead of whole modules
i.e. from sys import exit
vs import sys
https://stackoverflow.com/a/51300944/2307994