Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Untitled
SUBMITTED BY:
Guest
DATE:
Jan. 9, 2014, 1:39 a.m.
FORMAT:
Python
SIZE:
647 Bytes
Raw
Download
Tweet
HITS:
1181
Go to comments
Report
#!/usr/bin/env python
# -*- coding: utf-8 -*-
intro
=
"""
Bitbit hit checker
By : Annoyingcalc
"""
print
(
intro
);
import
requests
,
time
,
sys
,
urllib
,
hashlib
,
re
address
=
"http://bitbin.it/tVPAgjN4"
#Replace this with the link of Bitbit you want to check.
hits
=
0
data
=
requests
.
get
(
address
)
print
(
data
.
text
[
5705
:
5710
]
+
data
.
text
[
5715
:
5719
])
hits
=
data
.
text
[
5715
:
5719
]
while
data
.
status_code
==
200
:
data
=
data
.
text
[
5705
:
5710
]
+
data
.
text
[
5715
:
5719
]
if
data
[
6
:
9
]
!=
hits
:
hits
=
data
[
6
:
9
]
print
(
data
)
data
=
requests
.
get
(
address
)
print
(
data
.
status_code
)
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus