Checks static .html files for bad links
Project description
existence
=========
Recursively scans directories for static html files for bad or empty links. See
[here](http://www.ericcarmichael.com/writing-my-first-python-package.html) why I wrote this, I hate missing details!
# Example bad or empty links
```html
<a href=""></a> Empty
<a href></a> Empty
<a href="python.org"></a> Any bad link will fail, this one is missing http://
```
## Command line
> existence /path/to/dir
Checking links...
57 of 57
All of your links exist!
> existence /path/to/bad/links
Broken link found in file /path/to/bad/links/index.html on line 121 linking to None
Broken link found in file /path/to/bad/links/other.html on line 22 linking to non-existant.html
## Python
```python
>>> from existence import scan
>>> scan("/path/to/dir")
[]
>>> scan("/path/to/bad/links")
[
('None', '/path/to/bad/links/index.html', 121),
('non-existant.html', '/path/to/bad/links/other.html', 22)
]
# Returns a list of bad url tuples: [(url, file_name, line_number)]
```
# Progress bar
To enable the progress bar `pip install progressbar==2.3`
# Running tests
> python -m unittest discover
=========
Recursively scans directories for static html files for bad or empty links. See
[here](http://www.ericcarmichael.com/writing-my-first-python-package.html) why I wrote this, I hate missing details!
# Example bad or empty links
```html
<a href=""></a> Empty
<a href></a> Empty
<a href="python.org"></a> Any bad link will fail, this one is missing http://
```
## Command line
> existence /path/to/dir
Checking links...
57 of 57
All of your links exist!
> existence /path/to/bad/links
Broken link found in file /path/to/bad/links/index.html on line 121 linking to None
Broken link found in file /path/to/bad/links/other.html on line 22 linking to non-existant.html
## Python
```python
>>> from existence import scan
>>> scan("/path/to/dir")
[]
>>> scan("/path/to/bad/links")
[
('None', '/path/to/bad/links/index.html', 121),
('non-existant.html', '/path/to/bad/links/other.html', 22)
]
# Returns a list of bad url tuples: [(url, file_name, line_number)]
```
# Progress bar
To enable the progress bar `pip install progressbar==2.3`
# Running tests
> python -m unittest discover
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
existence-0.2.3.zip
(5.7 kB
view details)
File details
Details for the file existence-0.2.3.zip
.
File metadata
- Download URL: existence-0.2.3.zip
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32360812afc8e23c100b512b7be8ef3620dc00790a8af562418ead04c7ca2e62 |
|
MD5 | 0c8f65df58daa61378cebb96831ca148 |
|
BLAKE2b-256 | 3d67297ce8a9d66ee8b9b28c70e44e1b1a2fc22a05863d48c5b5942cb9ca9c44 |