Robert

Results 6 comments of Robert

I had success with `set NODE_OPTIONS=--max-old-space-size=8192`

- the following code works quite well with standard python ``` # conda install pywin32 import os from win32com.client import Dispatch # List all available devices wia_dev_manager = Dispatch("WIA.DeviceManager") for...

``` INFO 2018-03-06 20:35:10,691 ironscanner.main Looking for scanners ... INFO 2018-03-06 20:35:10,693 pyinsane2.wia.rawapi pyinsane2/wia/rawapi.cpp(L132): WIA->get_devices() INFO 2018-03-06 20:35:10,699 pyinsane2.wia.rawapi pyinsane2/wia/rawapi.cpp(L209): Opening device({6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\0000) INFO 2018-03-06 20:35:10,788 pyinsane2.wia.rawapi pyinsane2/wia/rawapi.cpp(L230): Device({6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\0000) opened INFO...

Thank you for the detailed explanation. I was almost expecting something like this. I am happy to help with further tests.

As @BTDrink mentioned the payload is encrypted. The session_key (ie. "webDK6Xl15mzc2RW") is generated on client side. It is then encrypted with public key (rsaEncryption (PKCS 1)) and send in the...

Here we go. A first minimal MVP. The `api_key_param` is updated with each request before encryption. ```Python import json import random import string from base64 import b64decode, b64encode, urlsafe_b64decode from...