Metadata-Version: 2.1
Name: linkcheck
Version: 0.0.6
Summary: linkcheck 
Author-email: TK <tk@terminalkitten.com>
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: typing-extensions
Requires-Dist: pydantic
Requires-Dist: click
Requires-Dist: httpx
Requires-Dist: playwright
Requires-Dist: devtools
Requires-Dist: pyfiglet
Requires-Dist: wasabi
Requires-Dist: selectolax
Requires-Dist: yaspin
Requires-Dist: black ; extra == "dev"
Requires-Dist: ipdb ; extra == "dev"
Requires-Dist: ipython ; extra == "dev"
Requires-Dist: flake8 ; extra == "dev"
Requires-Dist: isort ; extra == "dev"
Requires-Dist: wheel ; extra == "dev"
Requires-Dist: Sphinx ; extra == "doc"
Requires-Dist: sphinx-rtd-theme ; extra == "doc"
Requires-Dist: livereload ; extra == "doc"
Project-URL: Home, https://github.com/terminalkitten/linkcheck
Provides-Extra: dev
Provides-Extra: doc

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
