Alex Papanicolaou

Results 5 comments of Alex Papanicolaou

`from_dict` is able to parse an enum ```python class TestEnum(betterproto.Enum): ZERO = 0 ONE = 1 @dataclass class Foo(betterproto.Message): bar: TestEnum = betterproto.enum_field(1) f = Foo() print(f.from_dict(f.to_dict(include_default_values=True))) g = Foo(1)...

@dbanty I've followed some of your comments in various issues/PRs about what it would take to support very flexible templating. I don't know jinja too well so it sounds like...

For whatever my opinion is worth, I think you're right to favor being opinionated since you're making it conform to popular modern Python standards, as opposed to that official tool...

We recently ran into a similar problem. It doesn't even matter if it's an abstract property. ```python class A: @property def foo(self) -> str: ... def get_foo(self) -> str: return...

Hi, I went through the AWS deployment guide last night. I ran into this error and it's not at all the clearest thing to figure out what's wrong. There were...