You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cattrs.preconf.json.make_converter() and cattrs.preconf.ujson.make_converter() use Base85.
While this is more efficient, it's bad for interop in the sense that base64 is much more common. (eg, both Browsers and Node have it built-in.) (Yes, Base85 code can be found for basically any language, but you can often assume that Base64 will be standard library.)
What I Did
try:
from cattrs.preconf.ujson import make_converter
except ImportError:
from cattrs.preconf.json import make_converter
converter = make_converter()
The text was updated successfully, but these errors were encountered:
Description
cattrs.preconf.json.make_converter()
andcattrs.preconf.ujson.make_converter()
use Base85.While this is more efficient, it's bad for interop in the sense that base64 is much more common. (eg, both Browsers and Node have it built-in.) (Yes, Base85 code can be found for basically any language, but you can often assume that Base64 will be standard library.)
What I Did
The text was updated successfully, but these errors were encountered: