Garrett

Results 35 comments of Garrett

Gotcha. We already allow configuring region, host, etc. in `Connection` (and via the `Meta` class on models), would exposing `aws_profile` there be helpful?

Please provide enough information to reproduce your issue. Version of pynamodb, sample code, error output etc.

@mhihasan your best bet for now would be to declare the attribute type explicitly, e.g ``` b: ListAttribute[str] = ListAttribute(default=list, null=False) c: MapAttribute[str, int] = MapAttribute(default=dict) ``` Note that pynamodb...

@rchl it seems like development of this package may have moved over to https://github.com/aws/aws-sdk-js-v3 / https://www.npmjs.com/package/@aws-sdk/client-dynamodb. It's definitely confusing and the public documentation on the AWS appears out of date....

What do you see as a "compatibility issue" in this case? The DynamoDB API remains the same, so this basically just changes the SDK interface (which is good in this...

> @garrettheel @ikonst thoughts on this one? We don't look at the attribute's `null` field in any of the actions. If we decide this is a bug and not desired...

@leobarcellos no worries! Hopefully the existing tests should have some good examples, but just let me know if you need help with anything

hey @leobarcellos, is there anything I can help with for those tests? thanks!

Agreed that it'd be great to cut down on memory usage! Have you been able to give v2.0.0 a try yet? That should hopefully help a bit, but open to...

The earlier version probably works because it doesn't utilize the AWS API itself, but publicly available data files. This isn't a regression as such, since it was an intentional decision...