How can we accept json image files in python ? we use josn.loads for data but what about image files?
How can we accept json image files in python ? we use josn.loads for
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JSON is JavaScript Object Notation. It is used to convey information with the use of basic types, strings, integers, floats, booleans etc.
It can be used to convey meta data about resources, but not typically the resources themselves.
For instance, you might receive a JSON object like the following:
Typically you use this representational information to retrieve the resource on their own. You could do this in python with the standard library’s networking modules.