Borgstrom ♔
Borgstrom ♔
Hi @fwouts & @dan-compton, I would like to use to https://github.com/dividab/tsconfig-paths-webpack-plugin so that I can leverage `paths` from `tsconfig.json` to make my project imports nicer. Do you have any thoughts...
https://circleci.com/blog/continuously-deploying-python-packages-to-pypi-with-circleci/
This PR continues on #72 to add PAY_PER_REQUEST billing mode support to our table objects. FYI @mgwilliams ### Checklist - [x] Tests have been written to cover any new or...
Along with configuring static `read` & `write` values on a `Table` or `GlobalIndex` we should also support `read_min`, `read_max`, `write_min` & `write_max`, which if set would setup autoscaling for the...
For the OneToOne relationships we support it via: https://github.com/NerdWalletOSS/dynamorm/blob/master/dynamorm/relationships.py#L261-L278 Need to add support for the Many side.
http://boto3.readthedocs.io/en/latest/reference/services/dynamodb.html#DynamoDB.Client.update_time_to_live Should be easily integrated as a `Table` attribute for the create & update actions.
We don't cover how to use the `Q` object for combining queries in the docs yet.
This should be an opt-in feature. Since Dynamo is schema-less this feature is not about structural migration, but rather about migration of the data contained within each record. Migrations should...
Correct schematics implementation: ``` def to_primitive(self, value, context=None): value = (value - self.EPOCH).total_seconds() return self.primitive_type(value * 1000000) def to_native(self, value, context=None): try: return datetime.datetime.utcfromtimestamp(float(value) / 1000000).replace(tzinfo=self.UTC) except TypeError: if isinstance(value,...
See: https://github.com/NerdWalletOSS/dynamorm/pull/10#discussion_r114676516