Skip to content

Instantly share code, notes, and snippets.

View hassancodes's full-sized avatar
🎯
The Door is not locked, its your mind.

Muhammad hassan hassancodes

🎯
The Door is not locked, its your mind.
View GitHub Profile
@hassancodes
hassancodes / main.py
Last active June 1, 2022 18:55
Automating Tiktok using PurePython-ADB
from ppadb.client import Client as AdbClient
import time
# Default is "127.0.0.1" and 5037
# initializing AdbClient()
client = AdbClient(host="127.0.0.1", port=5037)
devices = client.devices()
if len(devices) == 0: