Alex Hayes
Alex Hayes
Firstly thanks for making this! I'm wondering, it says to get in contact if we're looking for FA Pro icon support. Is this something you plan to add or is...
I'd like to propose better support for GenericForeignKeys. I'd like to do the following; ``` python owner = G(ModelWithDefaultValues) G(ModelWithGenericForeignKey, owner=owner) ``` This would automatically set the `owner_type` and `owner_id`....
I have to deal with a bunch of legacy databases which have durations stored as both seconds and days - they are appropriate values given the intention thus I don't...
It appears that somewhere between version `2.0.0a1` and `2.0.1` models can no longer be pickled. ```python import pickle from schematics.models import Model from schematics.types import IntType class Foo(Model): bar =...
This is perhaps similar to #426 however I thought I should point it out in case it's not. Essentially `PolyModelType` does not validate as I would expect, in fact, it...
See #510 Essentially [`MappingProxyType`](https://docs.python.org/3.6/library/types.html#types.MappingProxyType) does not support pickle and thus models could not be pickled anymore. I've replaced `MappingProxyType` with `dict`. As far as I can tell the access to...
It would be great if it was possible to disable wrapping for tables but have it enabled for paragraphs. This would be useful because it's really difficult to work with...
While writing a custom rule `FIELD_NAMES_CAMEL_CASE` I discovered that `oneof` fields are not linted by the rule `FIELD_NAMES_LOWER_SNAKE_CASE` or `FIELDS_HAVE_COMMENT`. For example, if you have; ```protobuf syntax = "proto3"; message...
Are there any plans to support compression on the client side so that network traffic is minimised?
I'd really love a way of calling `toJSON` that omits the defaults from the output. Ideally this would be an argument supplied to the `toJSON` call because I have a...