Skip to content

A Toom for Grabbing or Scrapping all URLs from a targeted URL or domain.

License

Notifications You must be signed in to change notification settings

thehackersbrain/linkparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LinkParser

Written in Python3 by Gaurav Raj TheHackersbrain

Description

LinkParser is a tool written in Python 3 for scrapping or grabbing all the links from a targeted website, domain or URL.

NOTE: This Project was written during Practice session.

Version

LinkParser 1.0

Requirements

Installation and Uses

Installation

  • Install this tool from PyPi using PIP
    pip3 install linkparser

or

  • Build it from source

    • clone this repo
    git clone https://github.com/thehackersbrain/linkparser.git
    • change the directory
    cd linkparser
    • Now Run the setup.py script
    python setup.py install

Uses

  • For Grabbing All links from a targeted URL.

    linkparser -u 'https://blog.gauravraj.tech/'
  • For Grabbing Links from a specific path

    linkparser -u 'https://blog.gauravraj.tech' -p '/about'
  • For Writting all of the finding in a file

    linkparser -u 'https://blog.gauravraj.tech' -p '/about' -o output.log

About Author