Bulk Correction In Python

In Python bulk Correction API can be accessed by using following Code

Code Sample

import json
import urllib.request
import urllib
from urllib.parse import urlencode
from urllib.request import Request, urlopen
url = "https://www.fixaddress.com/SACAPI/bulkFromCode";
data = "{'address':[['Case1','564 HELIGAN LN #1q','','LIVERMORE','CA','94551']],'count':'1','jobs':'1','data':'USPS','log':'Enable'}"
request = Request(url, data.encode())
res = urlopen(request).read().decode()
print(res)