diff --git a/projects/All_links_from_given_webpage/README.md b/projects/All_links_from_given_webpage/README.md index e69de29bb..391d7993a 100644 --- a/projects/All_links_from_given_webpage/README.md +++ b/projects/All_links_from_given_webpage/README.md @@ -0,0 +1,24 @@ +# All Links from given Webpage + +This script retrieves all links from a given Webpage and saves them as a tct file + +### Prerequisites +Required Modules +- BeautifulSoup4 +- requests + +to install: +``` +$ pip install -r requirements.txt +``` + +### How to run the script +``` bash +$ python get_links.py +``` +You will then be asked which webpage you would like to analyze. +After that the extracted links will be saved as an array in `myLinks.txt`. + + +## *Author Name* +Kai Reichart diff --git a/projects/All_links_from_given_webpage/requirements.txt b/projects/All_links_from_given_webpage/requirements.txt new file mode 100644 index 000000000..947e8e896 --- /dev/null +++ b/projects/All_links_from_given_webpage/requirements.txt @@ -0,0 +1,2 @@ +beautifulsoup4==4.9.2 +requests==2.24.0