Skip to content

Instantly share code, notes, and snippets.

@eybisi
Created October 30, 2019 10:36
Show Gist options
  • Save eybisi/8ede7853631ed1843f5ddbc8f863345d to your computer and use it in GitHub Desktop.
Save eybisi/8ede7853631ed1843f5ddbc8f863345d to your computer and use it in GitHub Desktop.
check if app is on gplay
#/usr/bin/python
#python checkgp.py list.txt
import requests
import sys
f = open(sys.argv[1])
r = f.readlines()
for i in r:
try:
req = requests.get("https://play.google.com/store/apps/details?id="+i)
if req.status_code == 200:
print(f'Found :{i} : https://play.google.com/store/apps/details?id={i}')
else:
pass
except Exception as e:
print(e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment