https://github.com/terminalkitten/linkcheck
Django linkcheck CLI tool
https://github.com/terminalkitten/linkcheck
django linkcheck ui upgrade
Last synced: about 1 year ago
JSON representation
Django linkcheck CLI tool
- Host: GitHub
- URL: https://github.com/terminalkitten/linkcheck
- Owner: terminalkitten
- License: mit
- Created: 2022-03-21T11:53:34.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-23T10:33:36.000Z (about 4 years ago)
- Last Synced: 2025-04-15T14:44:35.862Z (about 1 year ago)
- Topics: django, linkcheck, ui, upgrade
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Intro with some text [Read the docs](https://linkcheck.readthedocs.io/en/latest/).
## Features
Some of it’s stand out features are:
- Check all links in Django project from user perspective.
- Check links with plain http call or with full browser request.
-
## Installation
Installing with:
```bash
pip install 'linkcheck'
```
## Setup
Add a `linkcheck.toml` to project directory, so linkcheck can pick-up settings.
```toml
hostname = "http://localhost:8000"
entry_point = "/dashboard"
[[users]]
username = "admin"
password = "admin123"
```
## Usage
```
Usage: linkcheck [OPTIONS] COMMAND [ARGS]...
Django linkcheck command line tool
Options:
--config TEXT select config file
--help Show this message and exit.
Commands:
browser run linkcheck in browser-mode
version show linkcheck version
visit run linkcheck in visit-mode
```
## Documentation
Our documentation is on [Read the docs](https://linkcheck.readthedocs.io/en/latest/linkcheck/getting_started/index.html).
## License
The MIT License