goodboy

Results 740 comments of goodboy

Yeah alternatively we've been thinking about using [`capnproto`](https://capnproto.org/rpc.html) and in particular seeing if we can auto-gen [schema](https://capnproto.org/language.html#language-reference) from type annotated Python functions. I think this would be a huge boon...

Oh also another notable project (for a `tractor` dependent that will likely soon be broken out on it's own repo) there is [`nptyping`](https://github.com/ramonhagenaars/nptyping) which may prove useful in automatic serialization...

Linking to https://github.com/jcrist/msgspec/issues/25 since we'll likely need nested `Struct`s to make this the most easy to implement (messages containing strictly typed payloads also defined as structs) otherwise there may need...

@gc-ss not yet specifically; feel free to make one of course if you have some ideas and/or want to try it out. Also, i think this could be easily wrapped...

> Feed this into networkx to build graph with child, isa and 'hasa` relationships @gc-ss wait why would you need this? Afaiu graph relations aren't relevant here; are you talking...

@gc-ss yah, as I was thinking you mean for composed structs/types. > If this makes sense, I can move these into a different repo and send you a link. Cool,...

~First hold up with `msgspec` is mentioned in https://github.com/jcrist/msgspec/issues/27, they have no streaming decoder api.~ No longer a problem, we just have to write a prefix framing stream packer; see...

Hmm alternatively to get typing going sooner then later we could just make some [`pydantic` message type handlers](https://github.com/msgpack/msgpack-python#packingunpacking-of-custom-data-type). Pretty sure all we'd need it detection of a `BaseModel` and then...

Linking explanation from https://github.com/jcrist/msgspec/issues/25

@iamzoltan thanks for the issue friend! Yeah we clearly dropped a couple balls on this readme move 😂 Is there a way we can test this without using a `pypi`...