flywheel icon indicating copy to clipboard operation
flywheel copied to clipboard

Object mapper for Amazon's DynamoDB

Results 11 flywheel issues
Sort by recently updated
recently updated
newest added

It would be great if flywheel supported the creation of DynamoDB streams. Has any work been done (or planned) on streams support? It's something I need, and may have time...

Version: flywheel==0.4.4 I have encountered with an empty result issue when using "first" function on flywheel query object, but got result when using the "all" function (with the same query)...

Some way to have models reference models. One-to-one, one-to-many, and many-to-many should be supported. Since we don't have the benefit of a SQL database, we'll have to consider the following:...

enhancement

I've observed a breaking bug in version `0.5` of flywheel. Took me awhile to figure out the issue. ``` ........ else: print('Setting {}'.format(arg)) setattr(user, arg, args[arg]) print(user.secret_question) print(user.ddb_dump_()) user.update() ```...

According to [this page](http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html), the queries on dynamoDB are limited to 1MB per result set and any aditional results can be retrieved by doing extra API calls using the `LastEvaluatedKey`...

When a field is set to None due to an explicit None value, there could be the option to set it to its default value before validation/ I've written a...

When there are more than 100 table in user's account and a table for a model already exists engine.create_schema() will fail with: ResourceInUseException: Table already exists: table-name This happens because...

I’d like to be able to provide an API to our users that is backed by a query that returns a large number of results. We’d like to be able...

When using new style class properties, inheriting Model causes a conflict. I assume this is because all non "_" prefixed class attributes are expected to be Fields. For example: ```...

I'm working on a some basic crud stuff and noticed that flywheel appears to raise an exception on the first validation failure and that's it. Is it possible to get...