Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions projects/All_links_from_given_webpage/README.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions projects/All_links_from_given_webpage/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
beautifulsoup4==4.9.2
requests==2.24.0