-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
32 lines (25 loc) · 786 Bytes
/
main.cpp
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
#include <bits/stdc++.h>
#include "HttpRequests/HttpDownloader.cpp"
#include "FileHandler/FileReader.cpp"
#include "hyperlinkextractor/HyperlinkExtractor.cpp"
#include "dataStructure/String/CustomString.cpp"
#include "dataStructure/Queue/CustomQueue.cpp"
#include "dataStructure/Vector/CustomVector.cpp"
#include "Crawler.cpp"
#include <filesystem>
int main()
{
// URL to fetch
CustomString url = CustomString::fromString("https://codequotient.com/");
// Depth of the crawler
int depth = 2;
// Session id
int session_id = 1001;
// Get the instance of the crawler
Crawler &crawler = Crawler::getInstance();
// Set the crawler
crawler.setCrawler(url, depth, session_id);
// Start the crawler
crawler.startCrawling();
return 0;
}