https://github.com/jessicaward/plink
Recursive link analyser, written in Python
https://github.com/jessicaward/plink
analyser beautifulsoup beautifulsoup4 cli console http https link mit network pip pretty pypi python python3 requests termcolor terminal tool url
Last synced: 6 months ago
JSON representation
Recursive link analyser, written in Python
- Host: GitHub
- URL: https://github.com/jessicaward/plink
- Owner: Jessicaward
- License: mit
- Created: 2023-03-10T17:08:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-24T13:32:58.000Z (over 1 year ago)
- Last Synced: 2025-01-08T01:58:27.606Z (over 1 year ago)
- Topics: analyser, beautifulsoup, beautifulsoup4, cli, console, http, https, link, mit, network, pip, pretty, pypi, python, python3, requests, termcolor, terminal, tool, url
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# plink
[](https://badge.fury.io/py/plink-url)
[](https://www.buymeacoffee.com/sg6j7z465pf)
[](https://www.python.org/)
[](https://pypi.python.org/pypi/ansicolortags/)
[](https://GitHub.com/jessicaward/plink/issues/)
Recursive link analyser, written in Python
To contribute or to run the code yourself, please read SETUP.md.
## Installation
To install plink, run the following command in your terminal:
```bash
python -m pip install --upgrade pip wheel
python -m pip install plink-url
```
To upgrade plink, run the following command in your terminal:
```bash
python -m pip install --upgrade pip wheel
python -m pip install --upgrade plink-url
```
If this does not work, you may have to use the `python3` or `pip3` commands instead.
## Examples
Basic example:
```bash
plink-url https://github.com/Jessicaward/plink
```
Limit analysis to a single domain:
```bash
plink-url https://jessica.im/Blog/ --whitelist https://jessica.im
```
Block multiple domains:
```bash
plink-url https://jessica.im/ --blacklist https://last.fm https://stackoverflow.com
```
Include extra information:
```bash
plink-url https://jessica.im/ --verbose
```
Specify a depth limit:
```bash
plink-url https://jessica.im/ --depth=3
```
Print extra details about the tool and it's usage:
```bash
plink-url https://jessica.im/ --help
```