Valentin Berlier
Valentin Berlier
In my mind it didn't make much sense to keep `Root` around as you can just as well use `File.parse()` for extracting chunks in `.mca` files. I guess the awkward...
Hey! Thanks a lot for being so active lately! I'm busy with school stuff atm but I'm looking forward to dive into all this, hopefully next week or the week...
Yeah I remember looking into how to subclass `ndarray` and I think that's why I ended up with the `view` approach. But I agree that it's a problem. Before diving...
Originally byte array tags used the builtin `bytearray` but it was a bit slower than `numpy` due to the separate `byteswap` required when dealing with big-endian nbt. Also it was...
I recently diagnosed a performance problem where serializing a [structure file with millions of entries](https://github.com/mcbeet/beet/issues/150) was taking 60 seconds. I'd like to make `nbtlib` viable when you also have really...
There's another type of feedback I got a few times over the years, and it's that the wrappers are annoying, especially for beginners. They expect to be able to use...
About SNBT support and the nbt path parser in `nbtlib`, I think they could be improved a little. I'm working on `mecha`, a full-blown parser and compiler pipeline for Minecraft...
I kinda lose confidence in code the longer it sits around unattended and since the core of the library is now a few years old I'm really itching to do...
The `auto_cast` thing is kind of clever, but the actual implementation of the setter would probably need to recurse into its children to also make the nested compound tags behave...
That's really sweet, thanks! I'm gonna make good use of these test files, I'm about to start messing around with mypyc.