Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
by
Codemod
Python/Orjson/Json.Load
Last update
May 29, 2024
Converts json.load to orjson.loads. Adds .read()
to the file object.
Examples
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