-
Notifications
You must be signed in to change notification settings - Fork 0
/
luminati.py
36 lines (29 loc) · 1.53 KB
/
luminati.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
print('If you get error "ImportError: No module named \'six\'" install six:\n'+\
'$ sudo pip install six');
print('To enable your free eval account and get CUSTOMER, YOURZONE and ' + \
'YOURPASS, please contact [email protected]')
import sys
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
if sys.version_info[0]==2:
import six
from six.moves.urllib import request
opener = request.build_opener(
request.ProxyHandler(
{'http': 'http://lum-customer-a_bubutanu-zone-gofundme_com-country-us-unblocker:[email protected]:22225',
'https': 'http://lum-customer-a_bubutanu-zone-gofundme_com-country-us-unblocker:[email protected]:22225'}))
content = opener.open('https://www.gofundme.com/f/rich-de-croce-memorial-fund').read()
with open('test.html', 'w') as file:
file.write(str(content))
print('Done.')
if sys.version_info[0]==3:
import urllib.request
opener = urllib.request.build_opener(
urllib.request.ProxyHandler(
{'http': 'http://lum-customer-a_bubutanu-zone-gofundme_com-country-us-unblocker:[email protected]:22225',
'https': 'http://lum-customer-a_bubutanu-zone-gofundme_com-country-us-unblocker:[email protected]:22225'}))
content = opener.open('https://www.gofundme.com/f/rich-de-croce-memorial-fund').read()
with open('test.html', 'w') as file:
file.write(str(content))
print('Done.')