April 2018
Intermediate to advanced
280 pages
6h 18m
English
In this recipe, we take an input data.csv which has some sensitive data. A Python program parses the file and generates a request JSON file for the API. The second part of the same Python program validates the response and gives a custom output to the user:
# -*- coding: utf-8 -*-"""@author: Legorie# The code identifies sensitive information and logs it on the console"""import jsonimport requests ...