Python tools | JSON format validator

Published: 14 November 2020
on channel: CodeLikeUs
3,213
26

Python tool for validate Json text string or Json file formt using json package.
#python #pythontools #json

import json

def validateJsonText(jsonTxt):
try:
json.loads(jsonTxt)
except ValueError as err:
print(err)
return False
return True

def validateJsonFile(jsonFile):
try:
json.load(jsonFile)
except ValueError as err:
print(err)
return False
return True


On this page of the site you can watch the video online Python tools | JSON format validator with a duration of hours minute second in good quality, which was uploaded by the user CodeLikeUs 14 November 2020, share the link with friends and acquaintances, this video has already been watched 3,213 times on youtube and it was liked by 26 viewers. Enjoy your viewing!