This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ys19991
Recipients ys19991
Date 2020-07-12.13:20:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1594560043.3.0.756696786523.issue41284@roundup.psfhosted.org>
In-reply-to
Content
Many Python users use the following snippets to read Json File.

```
with oepn(filepath, 'r') as f:
    data = json.load(f)
```

I suggest providing this snippet as a function.


```
data = json.read(filepath)
```

Reading Json is very frequent task for python users. I think it is worth providing this with the High Level API.
History
Date User Action Args
2020-07-12 13:20:43ys19991setrecipients: + ys19991
2020-07-12 13:20:43ys19991setmessageid: <1594560043.3.0.756696786523.issue41284@roundup.psfhosted.org>
2020-07-12 13:20:43ys19991linkissue41284 messages
2020-07-12 13:20:43ys19991create