Valentin Berlier

Results 52 comments of Valentin Berlier

As far as I understand this wouldn't let you use `data.visible` anywhere in the `setup` function since in this case `data` is the reactive object and spreading its properties simply...

You're welcome! One point I'd definitely like to improve is the documentation. Right now, I don't feel like the "[Usage](https://github.com/vberlier/nbtlib/blob/master/docs/Usage.ipynb)" notebook is enough. It covers a decent surface of the...

I'm reopening the issue because incomplete documentation is actually kind of a problem.

The `File` class is not much more than a compound tag with a `.root` property and two extra methods: `.load(filename, ...)` and `.save(filename, ...)`. So yeah, if you don't need...

There's now a work in progress documentation on github pages https://vberlier.github.io/nbtlib/ I'll try to keep updating it regularly.

I agree that the scope for this is a bit fuzzy right now. Auto-casting could be just a minimal quality-of-life thing, or affect the entire hierarchy you're working with, or...

The way I intended it is that something is a concrete tag if it inherits from `Base` and its `tag_id` is not `None`. I agree that `Tag` would've probably been...

Poetry just reached 1.0 though, I think it's great but I can see why it might still be lacking in a few areas. I kinda like [the solution proposed here](https://github.com/python-poetry/poetry/issues/761#issuecomment-568229920)....

I see, thanks for the feedback on this. > You might, however, consider switching to poetry-core for your build system Oh right looks like I didn't do it yet for...

The documentation, at least at the time, was a bit fuzzy. It said that nbt files are implicitly always compound tags. In python since we have dictionaries nbtlib doesn't see...