Closed cceyda closed 1 year ago
Oh I think r
is enough for now.
I will modify that part! Thanks for letting me know :)
@cceyda It's fixed https://github.com/hyunwoongko/pecab/releases/tag/v1.0.8
Could you upgrade library using pip install pecab --upgrade
?
that was fast~ thank you!
I'm trying to use pecab in an AWS lambda function. But lambda has only a read-only file system and because of the
mode="r+"
below I get an error. Would it break anything if it was justmode="r"
? (Seems to work fine for me but not tested deeply)https://github.com/hyunwoongko/pecab/blob/2134e5d19bbf87e5bd791bfdbd389748cad64d4d/pecab/_tokenizer.py#L31-L36
I'm just using it as is, not using a
user_dict
.This was the error... and for now switching to
mode="r"
seems to have workedThanks for this library 💞