link=d3.Link('production',DeletedDate='null',ProducingMonth='ge('+ProdYear+'-01-01)',API_UWI_14_Unformatted='btw('+ApiFrom+'000000000000,'+ApiTo+'000000000000)')
AttributeError: 'DeveloperAPIv3' object has no attribute 'Link'
Error:
Traceback (most recent call last):
File "D:\Python\v3_ScratchFile.py", line 67, in
main()
File "D:\Python\v3_ScratchFile.py", line 47, in main
link=d3.links('production',DeletedDate='null',ProducingMonth='ge('+ProdYear+'-01-01)',API_UWI_14_Unformatted='btw('+ApiFrom+'000000000000,'+ApiTo+'000000000000)')
TypeError: 'NoneType' object is not callable
I am unable to get links using the V3 API call.
link=d3.Link('production',DeletedDate='null',ProducingMonth='ge('+ProdYear+'-01-01)',API_UWI_14_Unformatted='btw('+ApiFrom+'000000000000,'+ApiTo+'000000000000)') print(link) sys.exit()
Error:
link=d3.Link('production',DeletedDate='null',ProducingMonth='ge('+ProdYear+'-01-01)',API_UWI_14_Unformatted='btw('+ApiFrom+'000000000000,'+ApiTo+'000000000000)') AttributeError: 'DeveloperAPIv3' object has no attribute 'Link'
Second attempt:
link=d3.links('production',DeletedDate='null',ProducingMonth='ge('+ProdYear+'-01-01)',API_UWI_14_Unformatted='btw('+ApiFrom+'000000000000,'+ApiTo+'000000000000)') print(link) sys.exit()
Error: Traceback (most recent call last): File "D:\Python\v3_ScratchFile.py", line 67, in
main()
File "D:\Python\v3_ScratchFile.py", line 47, in main
link=d3.links('production',DeletedDate='null',ProducingMonth='ge('+ProdYear+'-01-01)',API_UWI_14_Unformatted='btw('+ApiFrom+'000000000000,'+ApiTo+'000000000000)')
TypeError: 'NoneType' object is not callable