Untitled


SUBMITTED BY: Guest

DATE: Jan. 9, 2014, 1:39 a.m.

FORMAT: Python

SIZE: 647 Bytes

HITS: 1172

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. intro="""
  4. Bitbit hit checker
  5. By : Annoyingcalc
  6. """
  7. print(intro);
  8. import requests, time, sys, urllib, hashlib, re
  9. address = "http://bitbin.it/tVPAgjN4" #Replace this with the link of Bitbit you want to check.
  10. hits=0
  11. data = requests.get(address)
  12. print(data.text[5705:5710] + data.text[5715:5719])
  13. hits = data.text[5715:5719]
  14. while data.status_code == 200:
  15. data = data.text[5705:5710] + data.text[5715:5719]
  16. if data[6:9] != hits:
  17. hits=data[6:9]
  18. print(data)
  19. data = requests.get(address)
  20. print(data.status_code)

comments powered by Disqus