linkparser

A Simple Python Package to Extract All Links from a Target Domain or URL.


Keywords
linkparser, thehackersbrain, hacking, web, scraping, python, python3, link, url-finder, web-scraping
License
MIT
Install
pip install linkparser==1.0

Documentation

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