Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When scanning a barcode, SCAN_RESULT_BYTES is a strange format. #13

Open
kuri65536 opened this issue Jun 20, 2015 · 0 comments
Open

When scanning a barcode, SCAN_RESULT_BYTES is a strange format. #13

kuri65536 opened this issue Jun 20, 2015 · 0 comments

Comments

@kuri65536
Copy link
Owner

kuri65536/python-for-android#63

SCAN_RESULT_BYTES is not bytes array in python.

  def _rpc(self, method, *args):                                                
    data = {'id': self.id,                                                      
            'method': method,                                                   
            'params': args}                                                     
    request = json.dumps(data)                                                  
    self.client.write(request+'\n')                                             
    self.client.flush()                                                         
    response = self.client.readline()                                           
    self.id += 1                                                                
    result = json.loads(response)                                               
    if result['error'] is not None:

In self.client.readline(), response is already contains the converted string 'SCAN_RESULT_BYTES'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant