-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
executable file
·79 lines (60 loc) · 2.2 KB
/
app.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import json
import logging
import os
import sys
import time
from flask import Flask, render_template, request
from flask_images import Images
from website_screenshot import WebsiteScreenshot
from nordvpn import NordVPN
app = Flask(__name__)
images = Images(app)
@app.route('/')
def home():
if (status := nordvpn.status())['Status'] == 'Connected':
vpn_status = status['Status']
vpn_country = status['Country']
vpn_ip = status['Your new IP']
else:
vpn_status = status['Status']
vpn_country = ''
vpn_ip = ''
countries = nordvpn.countries()
return render_template('form.html', **locals())
@app.route('/getscreenshot', methods=['POST'])
def getscreenshot():
# Start timer
start = time.time()
# Inputs
url = request.form['url']
country = request.form['country']
# Change VPN country if wanted is other than current
if (current_country := nordvpn.status()['Country']) != country:
nordvpn.connect(country=country)
screenshot_name = webscr.get_screenshot(url, scroll=True)
time_elapsed = int(time.time() - start)
return render_template('result.html', **locals())
if __name__ == '__main__':
logging.basicConfig(stream=sys.stdout,
level=logging.INFO)
logging.getLogger("selenium").setLevel(logging.INFO)
logging.getLogger("urllib3").setLevel(logging.INFO)
logger = logging.getLogger('ScreenWorld')
logger.setLevel(logging.INFO)
with open('config.json', 'r') as file:
config = json.load(file)
firefox_path = config['firefox_path']
geckodriver_path = config['geckodriver_path']
screenshots_path = 'static/' + config['screenshots_path']
app.config['UPLOAD_FOLDER'] = screenshots_path
if not os.path.exists('static'):
os.mkdir('static')
if not os.path.exists(screenshots_path):
os.mkdir(screenshots_path)
nordvpn = NordVPN()
webscr = WebsiteScreenshot(firefox_path=firefox_path,
geckodriver_path=geckodriver_path,
screenshots_path=screenshots_path)
app.run(port=56777, debug=False)