Skip to content

🕷️ Application for finding all child links on a website

Notifications You must be signed in to change notification settings

teofanaenachioiu/WebCrawler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Web crawler

Simple application for finding all links on a website.

System specifications

  • Java 14
  • Maven 3.8.2

Dependencies

The project has the following dependencies:

Running

mvn clean compile exec:java

Assumptions

  1. The app aims to find all the links reachable from a base URL, and not every link from every page.

  2. "http://" and "https://" are considered two different links, even if the symbols after the protocol are the same.

  3. We consider that everything after a hash ("#") is an anchor in the page and we eliminate the part. The symbols after hash can be seen as "noise".

  4. Symbol "/" after the link is also considered as being "noise" and it is removed.

  5. If a link redirects to another link (e.g. when accessing "/random" we actually land on "/post/123"), both links are considered valid links and they are taken into account.

About

🕷️ Application for finding all child links on a website

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages