Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
TTOPM
/
belel-protocol
like
1
Model card
Files
Files and versions
xet
Community
main
belel-protocol
/
verifier
/
parsers
/
json_parser.py
TTOPM
Upload 313 files
6b53875
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
124 Bytes
import
json
def
parse_json_bytes
(
b:
bytes
):
try
:
return
json.loads(b.decode(
"utf-8"
))
except
Exception:
return
None