summaryrefslogtreecommitdiffstats
path: root/spec/flowchart.gv
blob: 6d181ece39451dfda0272eaabf4524b484451055 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph G {
"Indeed.com" [shape=diamond]

config -> "feednim formatter" [label="Read Queries"]
"feednim formatter" -> "feednim" [label="RSS URLs"]
"feednim" -> "Indeed.com" [label="HTML request"]
"Indeed.com" -> "feednim" [label="RSS job listings"]
"feednim" -> "webdriver" [label="full job posting's URL"]
"webdriver" -> "Indeed.com" [label="HTML request"]
"Indeed.com" -> "webdriver" [label="HTML of jobpage"]
"webdriver" -> "HTML parser" [label="raw HTML page data"]
"HTML parser" -> "Job Value Scorer" [label="Raw job description data"]


config -> "Job Value Scorer" [label="Priorities"]
config -> "Cache System" [label="Cache location"]
"Job Value Scorer" -> "Cache System" [label="URL of currently parsing job post"]
"Cache System" -> "Job Value Scorer" [label="True or False to if URL is in database"]
"Job Value Scorer" -> "latexdsl" [label="Formatted job data"]
"latexdsl" -> "Saver" [label="PDF file"]
config -> "Saver" [label="save location"]
"Saver" -> "Filesystem" [label="PDF file"]

}