boto3_type_annotations
boto3_type_annotations copied to clipboard
Some functions don't have help
I was trying out this package with a very simple piece of code but I cannot get it to work as I would expect:
import boto3
from boto3_type_annotations.s3 import *
bucket: Bucket = boto3.resource("s3").Bucket(self._bucket_name)
found_objs = bucket.objects.filter(Prefix="dev-")
When I try to get the help from filter it doesn't show anything, what am I doing wrong?
The filter objects are a bit tricky. If I remember correctly, they didn't have documentation. However, this will soon be a moot point