You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Arthur Silva edited this page Oct 31, 2020
·
1 revision
Since of v1.6.0 you're able to run the script on multiple devices simultaneously. However, one running script can handle only one device, so you'll have to start multiple script instances.
You don't have to copy the code!
Simply open another terminal window and run the same script from there. But before you do it, you'll have to find out your devices' identifiers. That's pretty simple: run good old adb devices. E.g. that's my output when 3 devices connected:
Thus "2443de990e017ece", "192.168.8.111:5555", "emulator-5554" are my devices identifiers. Now follow these steps for each device you want to run the script on:
Open a new terminal window in the GramAddict directory
pipenv shell
python run.py --device <your device identifier> ...some other args...
That's it!
The script stores each account's interaction data in a separate folder. So you can safely run the same code for different accounts: they won't intersect.