I'm getting the error,
AttributeError: 'Request' object has no attribute 'add_data'
from a library that uses urllib.request
In Python 2.7-3.3 urllib.request contained a add_data()
method.
But In Python 3.4 the documentation states that,
How do I add data to urllib requests in Python3.4?