-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathtest.py
61 lines (52 loc) · 1.58 KB
/
test.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
import argparse
import inspect
import json
import os
from jinja2 import Environment
from jinja2 import FileSystemLoader
from pyseoanalyzer import analyze
module_path = os.path.dirname(inspect.getfile(analyze))
arg_parser = argparse.ArgumentParser()
arg_parser.add_argument("site", help="URL of the site you are wanting to analyze.")
arg_parser.add_argument(
"-s", "--sitemap", help="URL of the sitemap to seed the crawler with."
)
arg_parser.add_argument(
"-f",
"--output-format",
help="Output format.",
choices=[
"json",
"html",
],
default="json",
)
arg_parser.add_argument(
"-d",
"--disk",
help="save to disk",
choices=[
"y",
"n",
],
default="y",
)
args = arg_parser.parse_args()
output = analyze(args.site, args.sitemap)
if args.output_format == "html":
from jinja2 import Environment
from jinja2 import FileSystemLoader
env = Environment(loader=FileSystemLoader(os.path.join(module_path, "templates")))
template = env.get_template("index.html")
output_from_parsed_template = template.render(result=output)
if args.disk == "y":
with open("test.html", "w", encoding="utf-8") as text_file:
text_file.write(output_from_parsed_template)
else:
print(output_from_parsed_template)
elif args.output_format == "json":
if args.disk == "y":
with open("test.json", "w", encoding="utf-8") as text_file:
text_file.write(json.dumps(output, indent=4, separators=(",", ": ")))
else:
print(json.dumps(output, indent=4, separators=(",", ": ")))