Metadata-Version: 2.1
Name: nnkurlparser
Version: 0.3
Home-page: https://github.com/Rnaveennithyakalyan/nnkurlparser
Author: R. NAVEEN NITHYA KALYAN
Author-email: naveennithyakalyan@gmail.com
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# NNKURLPARSER

## Overview
The urlparser script takes a list of URLs as input,parses them and generates a list of unique endpoint URLs by removing path components from each original URL.
This is the tool which is used as a Bugbounty automation tool for splitting endpoints from recon data.
It is used to parser the url according to our desire so we can have a detailed and proper implementation of our attacks for Bugbounty.

## Prerequisites
Python installed on our system

## Installation
The Installation can be proceeded further by the following command in the terminal:
1.Install pip package:

````
pip install nnkurlparser
````
## Using in programs
````
from nnkurlparser import read_urls, main

input_filename = "input.txt"
output_filename = "output.txt"

urls = read_urls(input_filename, output_filename)
print("Parsed URLs:", urls)

# You can also call the main function if needed
# main()
#Remember to replace "input.txt" and "output.txt" with the actual file names you want to use.

````

## Tool Description
This tools is used to automate the url parser procedure and as a result of which we prioritize and execute the bug bounty process and look for the bugs in a more systematic way!

 
