byCodemod

Python/Orjson/Json.Load

/icons/calendar.svg

Last update

Jul 24, 2024

This codemod converts json.load to orjson.loads. Adds .read() to the file object.

Example

Before

raw_data = json.load(dist_matched_artifact_index_release_file.file.getfile())

After

raw_data = orjson.loads(dist_matched_artifact_index_release_file.file.getfile().read())

Build custom codemods

Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community

background illustrationGet Started Now