magine

Results 7 issues of magine

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

参考代码 2.9.3 版本:https://github.com/leancloud/python-sdk/blob/v2.9.3/leancloud/query.py#L117 ```python query = Query(queries[0]._query_class._class_name) ``` 1. 不应该使用 Query 声明新的对象,而应该使用 cls 来声明,否则会导致继承 Query 得来的 MyQuery 类的 or_ 方法和 and_ 方法返回父类声明的实例。 ```python In [1]: from leancloud import Query In...

无法直接通过 `__init__` 方法还原一个 dump 出来的数据,所以自己做了一个: ```python class Object: @classmethod def load(cls, attrs): obj, meta_date = cls(), dict() for k in ("createdAt", "updatedAt"): v = attrs.pop(k, None) if v is not...

enhancement
next

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

Hello, I am setting up a data forwarding network using litep2p. May I ask a question about the RequestResponse protocol behavior. Does the RequestResponse protocol support sending multiple responses from...

Hello, I am working on a project that using litep2p with its RequestResponse protocol. I found that the connection will be closed if a response is not sent within 5...

I found that due to this commit: https://github.com/rust-nostr/nostr/commit/e2b0d0f6c43243efb421d4b688a0526ee398f844, `Relay` is no longer available externally during the upgrade. `RelayNotification` provides notifications for changes of `RelayStatus`, which is removed in `RelayPoolNotification`. Developers...