Alexander Tikhonov

Results 82 comments of Alexander Tikhonov

> can you please try, in your shell: > > ```shell > openssl s_client -connect FCM_SERVER_URL:FCM_SERVER_PORT < /dev/null | grep -i verif > ``` > > (of course with the...

Btw, the server we're connecting to is fcm-xmpp.googleapis.com:5235

The extended log with debug information. I hope it could help. ``` DEBUG:aiofcm:Message 38ac5510-f17f-4679-8da3-1d35e78fd4bb: waiting for connection DEBUG:aioxmpp.callbacks:connecting with mode DEBUG:aioxmpp.callbacks:connecting with mode DEBUG:aioxmpp.node.Client.on_stream_established:connecting with mode DEBUG:aioxmpp.node.Client.on_stream_destroyed:connecting with mode DEBUG:aioxmpp.callbacks:connecting...

I'll try my best to implement this soon. If you want this done asap, pull requests are welcome.

@alexmv Yes, you’re right it has to be an exception here. This project needs to be refreshed but unfortunately I don’t use it in my current projects and don’t have...

Hi, guys! I don't have experience with FlatBuffers, so it'll take me time to dive into this. But we can create subpackage `mashumaro.mixins.third_party` with the idea that anyone could create...

There is no strict validation at the moment for the sake of performance. It's not needed in many cases but I'm going to add optional validation. It will be turned...

Hi @ShardPhoenix It's not possible with mashumaro at the moment. I'm thinking about a separated from dataclass function for serialization but it's not coming soon.

At the moment, it can be done using a generic dataclass wrapper. A couple of examples: ```python @dataclass class CommonClass( Generic[T], DataClassJSONMixin, DataClassMessagePackMixin, DataClassYAMLMixin, DataClassTOMLMixin, ): x: T @classmethod def...

> Is that specific construct something you were going to add to the package? I've given a couple of examples of how this issue can be addressed from outside, but...