Metadata-Version: 2.1
Name: xurl
Version: 0.0.5
Summary: extract urls from html files
Home-page: https://github.com/aasmpro/xurl
Download-URL: https://pypi.org/project/xurl/
Author: Abolfazl Amiri
Author-email: aa.smpro@gmail.com
License: MIT
Keywords: url extract html tag webpage
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Utilities
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

### xurl

extract links (href data) from html files/web pages.

#### Installation
```
pip install xurl
```

#### Options
run the `xurl -h` or `xurl --help` for options
```
-a = append an URL to start of the links
-c = contain text (REGEX)
-C = not contain text (REGEX)
-q = quiet mode (do not print Errors/Warnings/Infos)
-v = version
```

#### Usages
```
xurl https://example.com
```
and same for the files
```
xurl path/to/file
```
search using regex
```
xurl https://example.com -c "section\-[1-10].*.[pdf|xlsx]"
```
