18 lines
774 B
Markdown
18 lines
774 B
Markdown
# linkmapy
|
|
|
|
## Usage
|
|
|
|
```
|
|
./linkmapy.py [-h] [--dump] [--max-depth N] [--max-links-per-site N] [--http-download-limit NBYTES] [--log] url
|
|
```
|
|
|
|
- positional arguments:
|
|
- `url` The URL of the site you want to start from
|
|
|
|
- optional arguments:
|
|
- `-h`, `--help` show this help message and exit
|
|
- `--dump` Only output the found connections to the console and exit
|
|
- `--max-depth N` The maximum depth at which links will be followed (default: 3)
|
|
- `--max-links-per-site N` The maximum amount of links on a page that will be included (default: 3)
|
|
- `--http-download-limit NBYTES` The maximum length of a requested html file download (in bytes) (default: 10000000)
|
|
- `--log` Log all visited sites and links to stderr
|