Hello Sonic,

That looks correct, so you are using the right version of suds-jurko at 
least.

On my workstation, I created a campaign with the name that you're having 
issues parsing and ran the get_campaigns.py example. I ran (sort of) 
without issues:

INFO:oauth2client.client:Refreshing access_token
> DEBUG:suds.transport.http:opening 
> (https://adwords.google.com/api/adwords/cm/v201509/CampaignService?wsdl)
> DEBUG:suds.transport.http:sending:
> URL: https://adwords.google.com/api/adwords/cm/v201509/CampaignService
> HEADERS: {'Soapaction': '""', 'SOAPAction': '""', 'Content-Type': 
> 'text/xml; charset=utf-8', 'Content-type': 'text/xml; charset=utf-8', 
> 'Authorization': u'REDACTED'}
> MESSAGE:
> <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope 
> xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/"; 
> xmlns:ns1="https://adwords.google.com/api/adwords/cm/v201509"; 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
> xmlns:tns="https://adwords.google.com/api/adwords/cm/v201509"; 
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";><SOAP-ENV:Header><tns:RequestHeader><tns:clientCustomerId>REDACTED</tns:clientCustomerId><tns:developerToken>REDACTED</tns:developerToken><tns:userAgent>REDACTED</tns:userAgent><tns:validateOnly>false</tns:validateOnly><tns:partialFailure>false</tns:partialFailure></tns:RequestHeader></SOAP-ENV:Header><ns0:Body><ns1:get><ns1:serviceSelector><ns1:fields>Id</ns1:fields><ns1:fields>Name</ns1:fields><ns1:fields>Status</ns1:fields><ns1:paging><ns1:startIndex>0</ns1:startIndex><ns1:numberResults>100</ns1:numberResults></ns1:paging></ns1:serviceSelector></ns1:get></ns0:Body></SOAP-ENV:Envelope>
> Traceback (most recent call last):
>   File "/usr/local/lib/python2.7/logging/__init__.py", line 859, in emit
>     msg = self.format(record)
>   File "/usr/local/lib/python2.7/logging/__init__.py", line 732, in format
>     return fmt.format(record)
>   File "/usr/local/lib/python2.7/logging/__init__.py", line 471, in format
>     record.message = record.getMessage()
>   File "/usr/local/lib/python2.7/logging/__init__.py", line 335, in 
> getMessage
>     msg = msg % self.args
>   File "/usr/local/lib/python2.7/dist-packages/suds/__init__.py", line 
> 168, in <lambda>
>     __str__ = lambda x: unicode(x).encode('utf-8')
>   File 
> "/usr/local/lib/python2.7/dist-packages/suds/transport/__init__.py", line 
> 96, in __unicode__
>     %s""" % (self.code, self.headers, self.message)
> UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position 577: 
> ordinal not in range(128)
> Logged from file http.py, line 89
> Campaign with id '374649914', name '15-abc-1-mmep-中国-IOS', and status 
> 'ENABLED' was found.


The error you're seeing there is a known issue that the suds logger has 
with unicode characters, but it doesn't prevent the sample from completing. 
As you can see, the Campaign's name can be retrieved and printed without 
issues. This definitely seems like an issue specific to the environment the 
code is run on. I went a step further and ran this on a separate VM 
instance, and was able to reproduce it in that case.

The workstation has its default character encoding set to utf-8 and the VM 
has it set to ANSIX3.4-1968, which is probably related. I think suds might 
have some flaky behavior here depending on the environment used. In the 
meantime, you can avoid this error by encoding the output of string fields 
such as:

    # Display results.
    if 'entries' in page:
      for campaign in page['entries']:
        print ('Campaign with id \'%s\', name \'%s\', and status \'%s\' was 
'
               'found.' % (campaign['id'], campaign['name'].encode('utf-8'),
                           campaign['status'].encode('utf-8')))

I'll continue investigating this, as a better fix may need to come upstream 
from the suds library.

Regards,
Mark

On Monday, February 1, 2016 at 9:12:24 PM UTC-5, maxSonic Sun wrote:
>
> Hi Mark,
>
> Here is the version:
> __version__ = "0.6"
> __build__ = ""
>
> Best Regards
> Sonic Sun
>
> On Monday, February 1, 2016 at 11:32:44 PM UTC+8, Mark Saniscalchi wrote:
>>
>> Hello Sonic,
>>
>> I'd just like to confirm, could you tell me what the version number is in 
>> the following file:
>>
>>
>> /project/apiservice/venvdocker/local/lib/python2.7/site-packages/suds/version.py
>>
>> Thanks,
>> Mark
>>
>>
>> On Monday, February 1, 2016 at 2:51:27 AM UTC-5, maxSonic Sun wrote:
>>>
>>> Hi,
>>>
>>> There is something weird here, I am able to parsed some other unicode 
>>> characters and also other accounts of my customer. I have listed all the 
>>> pip lib in my machine, I think I have installed all the lib correctly. By 
>>> the way, I didn't change any of the import in the py file, how can it be 
>>> changed to other libs if I do nothing in the lib?
>>>
>>> This issue is also happened in the Java lib for the same account of our 
>>> customer.
>>>
>>> After some debugging, it seems like there will be noway to parsed the id 
>>> like: 15-abc-1-mmep-中国-IOS. Please notice that the - is different from -.
>>>
>>> Best Regards,
>>> Sonic Sun
>>>
>>> On Friday, January 22, 2016 at 4:39:42 AM UTC+8, Mark Saniscalchi wrote:
>>>>
>>>> Hello,
>>>>
>>>> We aren't able to replicate this issue with account names containing 
>>>> unicode characters. In my case, I ran the get_account_hierarchy.py 
>>>> <https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201509/account_management/get_account_hierarchy.py>
>>>>  
>>>> sample and got the expected result:
>>>>
>>>> CustomerId, Name
>>>> --Redacted, マーク Test Account
>>>>
>>>> I think this might have to do with something else. In the stacktrace, I 
>>>> noticed that you aren't using the sax parser embedded in the suds-jurko 
>>>> library. On even closer observation, I noticed that you weren't even using 
>>>> the suds-jurko library. This is almost definitely the cause of the 
>>>> problem, 
>>>> as I don't think our library is compatible with the original suds library, 
>>>> which is now woefully unmaintained. I suggest uninstalling both googleads 
>>>> and the suds library you're using currently. Then reinstall googleads with 
>>>> pip using the following command:
>>>>
>>>> pip install googleads
>>>>
>>>> Our setup.py file should then install all of the necessary dependencies 
>>>> automatically, which should resolve this problem.
>>>>
>>>> Regards,
>>>> Mark Saniscalchi
>>>>
>>>> On Wednesday, January 20, 2016 at 2:22:09 PM UTC-5, maxSonic Sun wrote:
>>>>>
>>>>> Hi,
>>>>>
>>>>> I have the error as shown in the first pic below. It seems that it is 
>>>>> caused by the decoding of the soap xm. The second pic  is my code. 
>>>>> However, 
>>>>> if I remove the "name" from the selector, everything works fine.
>>>>> My customers have lots of Chinese Name in their MCC accounts. I think 
>>>>> it is caused by the unicode problem of python and both the Chinese. How 
>>>>> can 
>>>>> I solve this problem to avoid this kind of error?
>>>>>
>>>>>
>>>>>
>>>>> <https://lh3.googleusercontent.com/-T-0kdzKwXWQ/Vp-ti3ztPcI/AAAAAAAAA4k/_WvW8uoQeZs/s1600/PastedGraphic-4.png>
>>>>>
>>>>>
>>>>> <https://lh3.googleusercontent.com/-lWDEJ7LLcPc/Vp-tlw4VxyI/AAAAAAAAA4s/5DkEn5oey7E/s1600/PastedGraphic-6.png>
>>>>>
>>>>>
>>>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ac0ac697-f308-4fed-a7ee-1f2a4787ef4d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to