Alexander Tikhonov
Alexander Tikhonov
> I think the main reason for this performance gap is that we need to create a JsonEncoder or a JsonDecoder to serialize and deserialize our dataclasses. I’m sure it...
> But now consider if you have a type > > ``` > class Foo: > x: int | Foo > ``` > > The data gets transferred as a...
Support for 3.11 was introduced by @kupsum in https://github.com/Fatal1ty/aioapns/pull/57. PR for 3.12 is still very welcome.
Hey @kupsum Thank you for this PR. Have you been able to check if this library generally works on Python 3.12?
I believe this is related to the [version 3.2](https://github.com/Fatal1ty/mashumaro/releases/tag/v3.2) of mashumaro that fixed no error when passing None values to fields that shouldn't be None. if `None` value is ok...
> Maybe I’m a bit late to the party, but I’ve made proof of concept for basic HTTP-proxies. > > In a nutshell there’s a HttpProxyProtocol (https://github.com/chrigu/aioapns/blob/feature/http-proxy/aioapns/connection.py#L594) that sets up...
Proxy support was added in #65
v3.3 is out: https://github.com/Fatal1ty/aioapns/releases/tag/v3.3
Hi @mishamsk Reviewing pull requests with mixed changes can be challenging. As a result, it has taken me some time to respond. Would you kindly consider splitting the pull request...
> So when something breaks during deserialization, the current basic functionality is unusable. Even if I could have inspected the 300MB worth of text, finding what caused an error is...