GitHub user chaokunyang added a comment to the discussion: Replace pickle with fory globally
you can take following code as an example: ```python import pyfory import pickle fory = pyfory.Fory(ref=True, strict=False) pickle.dumps = fory.dumps pickle.loads = fory.loads ``` GitHub link: https://github.com/apache/fory/discussions/3008#discussioncomment-15168590 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
