I've been trying to use adspygoogle 1.1.7 downloaded (uploaded yesterday with the release of the new API version) from PyPI just as the extracted tarball with v201402
Although this worked fine in the past It won't work for me unless I modify the validity checks as I show at the bottom.
I hope this is useful for someone else.
adspygoogle.adwords. __init__
Line 47
From:
API_VERSIONS = ('v201306', 'v201309')
To:
API_VERSIONS = ('v201306', 'v201309', 'v201402')
This should make v201402 the default version if none is specified.
adspygoogle.adwords.AdWordsSanityCheck
Adding this line avoids the validation error.
Cheers!
Martin