Rémi Alvergnat
Rémi Alvergnat
You can configure the list of allowed languages (https://github.com/guessit-io/guessit/blob/6e4ead187ef98f405487301b7ddc89cb5461ac5d/guessit/config/options.json#L11). See https://guessit.readthedocs.io/en/latest/configuration.html#configuration I have to admin that "Hi" should not be in this list by default, as it's quite a common...
Just tested with [pyahocorasick](https://github.com/WojciechMula/pyahocorasick/), but it makes things a bit slower when running guessit unit tests :( See rebulk branch for implementation : https://github.com/Toilal/rebulk/pull/9
Again, you are perfectly right :) I though string search was a bottleneck, but it isn't and I should have used a profiler. I'm more used to Java profiler though,...
I think it makes sense to have a volume property.
Same problem here.
I've run the issue in the debuger, and problem occurs in stubs module at method [VCRConnection._uri()](https://github.com/kevin1024/vcrpy/blob/master/vcr/stubs/__init__.py#L137). This method should return the absolute URI of an URL, right ... But when...
It should just work without annotation, so it would be better with `@ApiHide` annotation.
Ho I see, sorry for the noise. I don't use IronPython nor Anaconda, so i'm not sure I'll be in best position to contribute on those features. I need the...
Thanks for your examples. It seems to fail to go through a relationship though, because registry is `None`. (At least for the 1st example) ``` File "/home/toilal/idea-projects/planireza/backend/planireza/__main__.py", line 4, in...
For now I understand that, 1) I need to exclude relationships with `exclude_fields`. 2) I need to ~~implement~~ **import** `get_session`. I get this working too after excluding relationships. I'll try...