Guest User

Untitled

a guest
Dec 2nd, 2015
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import requests
  2. import time
  3.  
  4. id = 244364969
  5. for i in range(0, 9999999):
  6.     url = "https://vk.com/doc%s_%s" % (id, str(i).zfill(7))
  7.     r = requests.get(url)
  8.     if 'Error' not in r.text:
  9.         print url
Advertisement
Add Comment
Please, Sign In to add comment